diff options
author | Nico Weber <thakis@chromium.org> | 2020-08-01 13:09:18 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-01 19:26:54 +0200 |
commit | 6dd10ad8dce61219d3846722f1b1de1ebb846aa0 (patch) | |
tree | 0b32c85f524b589be4f2fdd7fbb4114968bdd1d6 /Base/res/themes | |
parent | d366ad8232b943a3035e16cbe0a9b6b9bd8bdc87 (diff) | |
download | serenity-6dd10ad8dce61219d3846722f1b1de1ebb846aa0.zip |
Themes: Fix default theme window stripes and shadow after #2811
Change #2811 made window title stripes and window title shadow themable,
but it used the same stripe and shadow color for all window modes.
This is fine for the new 'basalt' theme which uses the same color
in all four window modes, but it changed the default theme so that
background windows had brown stripes and a brown shadow.
Instead, make the title stripe and title shadow themable per window mode,
and change the default theme to restore the colors it had before
change #2811: The title stripe color is the same as Border1 for all
window modes, and the title shadow is the same as the title stripe
darkened by 0.6.
Diffstat (limited to 'Base/res/themes')
-rw-r--r-- | Base/res/themes/Basalt.ini | 10 | ||||
-rw-r--r-- | Base/res/themes/Default.ini | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/Base/res/themes/Basalt.ini b/Base/res/themes/Basalt.ini index 237713902f..8b83a71fc2 100644 --- a/Base/res/themes/Basalt.ini +++ b/Base/res/themes/Basalt.ini @@ -3,17 +3,23 @@ DesktopBackground=#171717 ActiveWindowBorder1=black ActiveWindowBorder2=#1f1f1f ActiveWindowTitle=white +ActiveWindowTitleShadow=#00000000 +ActiveWindowTitleStripes=#00000000 InactiveWindowBorder1=#171717 InactiveWindowBorder2=#1f1f1f InactiveWindowTitle=#aaaaaa +InactiveWindowTitleShadow=#00000000 +InactiveWindowTitleStripes=#00000000 MovingWindowBorder1=black MovingWindowBorder2=#2f1f1f MovingWindowTitle=white +MovingWindowTitleShadow=#00000000 +MovingWindowTitleStripes=#00000000 HighlightWindowBorder1=black HighlightWindowBorder2=#3f2f0f HighlightWindowTitle=white -WindowTitleShadow=#00000000 -WindowTitleStripes=#00000000 +HighlightWindowTitleShadow=#00000000 +HighlightWindowTitleStripes=#00000000 MenuBase=#1f1f1f MenuBaseText=white MenuStripe=#171717 diff --git a/Base/res/themes/Default.ini b/Base/res/themes/Default.ini index 4281581667..36e8dbd526 100644 --- a/Base/res/themes/Default.ini +++ b/Base/res/themes/Default.ini @@ -3,17 +3,23 @@ DesktopBackground=#505050 ActiveWindowBorder1=#6e2209 ActiveWindowBorder2=#f4ca9e ActiveWindowTitle=white +ActiveWindowTitleShadow=#421405 +ActiveWindowTitleStripes=#6e2209 InactiveWindowBorder1=#808080 InactiveWindowBorder2=#c0c0c0 InactiveWindowTitle=#d5d0c7 +InactiveWindowTitleShadow=#4c4c4c +InactiveWindowTitleStripes=#808080 MovingWindowBorder1=#a1320d MovingWindowBorder2=#fadcbb MovingWindowTitle=white +MovingWindowTitleShadow=#601e07 +MovingWindowTitleStripes=#a1320d HighlightWindowBorder1=#a10d0d HighlightWindowBorder2=#fabbbb HighlightWindowTitle=white -WindowTitleShadow=#421405 -WindowTitleStripes=#6e2209 +HighlightWindowTitleShadow=#600707 +HighlightWindowTitleStripes=#a10d0d MenuBase=white MenuBaseText=black MenuStripe=#bbb7b0 |