mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 10:20:39 +00:00
Change tertiary color to white instead of grey (#408)
Change the tertiary color in the default theme to white instead of grey. Currently, the tertiary color is the same as the view background color, making it invisible as foreground color. This makes the Outset effect not work as (I think) intended.
This commit is contained in:
parent
b3f913391a
commit
8a018dbe4d
@ -143,7 +143,7 @@ impl Palette {
|
||||
/// * `View` => `Dark(White)`
|
||||
/// * `Primary` => `Dark(Black)`
|
||||
/// * `Secondary` => `Dark(Blue)`
|
||||
/// * `Tertiary` => `Dark(White)`
|
||||
/// * `Tertiary` => `Light(White)`
|
||||
/// * `TitlePrimary` => `Dark(Red)`
|
||||
/// * `TitleSecondary` => `Dark(Yellow)`
|
||||
/// * `Highlight` => `Dark(Red)`
|
||||
@ -161,7 +161,7 @@ impl Default for Palette {
|
||||
View => Dark(White),
|
||||
Primary => Dark(Black),
|
||||
Secondary => Dark(Blue),
|
||||
Tertiary => Dark(White),
|
||||
Tertiary => Light(White),
|
||||
TitlePrimary => Dark(Red),
|
||||
TitleSecondary => Light(Blue),
|
||||
Highlight => Dark(Red),
|
||||
|
Loading…
Reference in New Issue
Block a user