diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 14:03:02 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 14:03:02 +0200 |
commit | 9366789872670a4fefd546bb3469def98d3e0b3d (patch) | |
tree | f036d780d8302eb3b0716a0601aab885d75a816d /src/components/Basic | |
parent | 382d3385c21131d9f9e6d1b3511c38e3ba9cb836 (diff) | |
download | Aurora-data-9366789872670a4fefd546bb3469def98d3e0b3d.tar.gz Aurora-data-9366789872670a4fefd546bb3469def98d3e0b3d.zip |
Add dark theme (no way to change to it yet)
Diffstat (limited to 'src/components/Basic')
-rw-r--r-- | src/components/Basic/Bar.svelte | 6 | ||||
-rw-r--r-- | src/components/Basic/Chip.svelte | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/components/Basic/Bar.svelte b/src/components/Basic/Bar.svelte index 1b4584d..5715b41 100644 --- a/src/components/Basic/Bar.svelte +++ b/src/components/Basic/Bar.svelte @@ -31,11 +31,7 @@ width: 100%; right: calc(100% - var(--progress)); overflow: hidden; - background: linear-gradient(90deg, - rgba(255, 42,228,1) 0%, - rgba(164,255,177,1) 60%, - rgba(214,255,241,1) 85%, - rgba(247,250,252,1) 100%); + background: var(--gradient-2, green); border-radius: 15px; } diff --git a/src/components/Basic/Chip.svelte b/src/components/Basic/Chip.svelte index b8697ae..19fa36c 100644 --- a/src/components/Basic/Chip.svelte +++ b/src/components/Basic/Chip.svelte @@ -3,7 +3,7 @@ padding: 3px 5px; box-sizing: border-box; border-radius: 20px; - background: linear-gradient(90deg, #84fab0, #8fd3f4 51%, #84fab0) 100% / 200%; + background: var(--gradient-1, green); color: white; } </style> |