diff options
Diffstat (limited to 'web/assets/themes/soft.css')
-rw-r--r-- | web/assets/themes/soft.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/web/assets/themes/soft.css b/web/assets/themes/soft.css index 2eb641e35..05923d91d 100644 --- a/web/assets/themes/soft.css +++ b/web/assets/themes/soft.css @@ -20,7 +20,7 @@ --br-inner: 0.4rem; /* Basic page styling (background + foreground) */ - --bg: linear-gradient(-90deg, var(--soft-blue), var(--soft-pink), white, var(--soft-pink), var(--soft-blue)); + --bg: var(--soft-pink); --bg-accent: var(--soft-pink-translucent); --fg: var(--gray1); --fg-reduced: var(--gray3); @@ -41,6 +41,18 @@ --boxshadow-border: 0.08rem solid var(--gray8); } +/* Main page background */ +body { + background: linear-gradient( + -90deg, + var(--soft-blue), + var(--soft-pink), + white, + var(--soft-pink), + var(--soft-blue) + ); +} + /* Scroll bar */ html, body { scrollbar-color: var(--orange2) var(--soft-pink); |