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/sunset-light.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/sunset-light.css')
| -rw-r--r-- | web/assets/themes/sunset-light.css | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/web/assets/themes/sunset-light.css b/web/assets/themes/sunset-light.css index 25bf1fad7..a37fa7fb7 100644 --- a/web/assets/themes/sunset-light.css +++ b/web/assets/themes/sunset-light.css @@ -23,7 +23,7 @@ --orange2: var(--pink); /* Basic page styling (background + foreground) */ - --bg: linear-gradient(var(--eggplant1), var(--pink), var(--orange), var(--yellow), var(--eggshell)); + --bg: var(--eggshell); --bg-accent: var(--white2); --fg: var(--eggplant4); --fg-reduced: var(--eggplant3); @@ -45,6 +45,17 @@ --boxshadow-border: 0.08rem solid var(--orange); } +/* Main page background */ +body { + background: linear-gradient( + var(--eggplant1), + var(--pink), + var(--orange), + var(--yellow), + var(--eggshell) + ); +} + /* Scroll bar */ html, body { scrollbar-color: var(--pink) var(--eggshell); @@ -55,12 +66,6 @@ html, body { color: var(--eggshell); } -/* Role and bot badge backgrounds */ -.profile .profile-header .basic-info .namerole .role, -.profile .profile-header .basic-info .namerole .bot-username-wrapper .bot-legend-wrapper { - background: var(--eggshell); -} - /* Profile fields */ .profile .about-user .fields .field { border-bottom: 0.1rem solid var(--orange); |
