diff options
| author | 2024-09-26 17:00:13 +0200 | |
|---|---|---|
| committer | 2024-09-26 17:00:13 +0200 | |
| commit | 82b9515a9d5436eb58b5270e634c57a9e3281da7 (patch) | |
| tree | 21f029df4e2f255f8f904d242a7cf474b6919951 /web/assets/themes/soft.css | |
| parent | [bugfix] s3 media uploaded without content-type (#3353) (diff) | |
| download | gotosocial-82b9515a9d5436eb58b5270e634c57a9e3281da7.tar.xz | |
[chore] Fix some contrast issues in themes; performance tweaks (#3358)
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); |
