Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified public/branding/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/favicon.ico
Binary file not shown.
Binary file modified public/branding/stlos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/telos-logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/telos-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/telos-scan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/telos-wallet-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/telos-wallet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/branding/telos.ico
Binary file not shown.
Binary file modified public/branding/telos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/branding/tlos.ico
Binary file not shown.
Binary file added public/branding/wrappedtlos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/evm/AppNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ export default defineComponent({
width: 100vw;
transform: translateX(-100%);
transition: 0.2s transform ease;
background: var(--site-gradient);
background: var(--menu-gradient);
z-index: $z-index--menu;

&--open {
Expand Down
8 changes: 5 additions & 3 deletions src/css/global/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ body.body--light {
$accent-3: #DDD1FF;
$accent-4: #A5A6F6;
$accent-5: #F7F5FF;
$site-gradient: linear-gradient(0.4turn, #071033, #6039A4);
$site-gradient: linear-gradient(0.4turn, rgba(0, 242, 254, 0.4), rgba(196, 113, 245, 0.5));
$tooltip-gradient: linear-gradient(0.2turn, rgba(#071033, 0.8), rgba(#6039A4, 0.8));
$high-contrast-text-color: #282828;
$default-contrast-text-color: #4D4D4D;
Expand Down Expand Up @@ -58,9 +58,10 @@ body.body--light {

--bg-color: #{$canvas};
--site-gradient: #{$site-gradient};
--menu-gradient: linear-gradient(0.4turn, #0891b2, #8b5cf6);

--card-background-color: #{$canvas};
--header-background-color: #{$accent-5};
--header-background-color: #{$site-gradient};
--display-telos-branding-bg: none;

--q-primary: #{$primary} !important;
Expand Down Expand Up @@ -112,7 +113,7 @@ body.body--dark {
$menu-text: #fff;
$canvas: #111;

$site-gradient: linear-gradient(0.7turn, #1d1d1d, #1e2931);
$site-gradient: linear-gradient(0.7turn, #0a0a0b, #1a1625);
$tooltip-gradient: linear-gradient(0.2turn, rgba(#232a30, 0.8), rgba(#173246, 0.8));


Expand All @@ -137,6 +138,7 @@ body.body--dark {

--bg-color: #{$canvas};
--site-gradient: #{$site-gradient};
--menu-gradient: #{$site-gradient};

--card-background-color: #{$dark};
--header-background-color: var(--card-background-color);
Expand Down
12 changes: 6 additions & 6 deletions src/css/quasar.variables.sass
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// to match your app's branding.
// Tip: Use the "Theme Builder" on Quasar's documentation website.

$primary : #571aff
$secondary : #dfdfed
$accent : #505DCD
$primary : #0891b2
$secondary : #3b82f6
$accent : #8b5cf6

$positive : #255B00
$negative : #880000
Expand All @@ -23,9 +23,9 @@ $warning : #AD6500

$dark : #1d1d1d

$d-primary : #348DCC
$d-secondary : #8B3F98
$d-accent : #73C58F
$d-primary : #00F2FE
$d-secondary : #4FACFE
$d-accent : #C471F5

$d-positive : #398f00
$d-negative : #CC0000
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ watch(selectedNetwork, () => {
<style lang="scss">
.c-home {
position: relative;
background: var(--site-gradient);
background: var(--menu-gradient);
width: 100%;
padding-top: 64px;

Expand Down