minor improvements to palettes (starred color)

This commit is contained in:
Giuliano Bellini s294739 2024-01-20 22:24:23 +01:00
parent f249f85120
commit ed1305ccb7
7 changed files with 14 additions and 14 deletions

View file

@ -3,4 +3,4 @@ secondary = "#0080FF"
outgoing = "#A748AE"
text_body = "#000066"
text_headers = "#CCFFFF"
starred = "#FFFF66"
starred = "#E1C82A"

View file

@ -3,4 +3,4 @@ secondary = "#B25900"
outgoing = "#218924"
text_body = "#043A00"
text_headers = "#232634"
starred = "#FFFF00"
starred = "#CD981B"

View file

@ -3,4 +3,4 @@ secondary = "#FF8000"
outgoing = "#FFFFFF"
text_body = "#33FF33"
text_headers = "#232634"
starred = "#FFFF00"
starred = "#FFFF0099"

View file

@ -26,7 +26,7 @@ pub static DRACULA_LIGHT_PALETTE: Lazy<Palette> = Lazy::new(|| Palette {
primary: color!(0xf8f8f2),
secondary: color!(0x9f1670),
outgoing: color!(0x005d6f),
starred: color!(0xffb86c, 0.8),
starred: color!(0xffb86c),
text_headers: color!(0xf8f8f2),
text_body: color!(0x282a36),
});

View file

@ -27,7 +27,7 @@ pub static GRUVBOX_LIGHT_PALETTE: Lazy<Palette> = Lazy::new(|| Palette {
primary: color!(0xfbf1c7), // bg
secondary: color!(0xd65d0e), // orange
outgoing: color!(0x689d6a), // aqua
starred: color!(0xd79921, 0.8), // yellow
starred: color!(0xd79921, 0.9), // yellow
text_headers: color!(0xf9f5d7), // bg0_h
text_body: color!(0x282828), // fg
});

View file

@ -24,7 +24,7 @@ pub static NORD_LIGHT_PALETTE: Lazy<Palette> = Lazy::new(|| Palette {
primary: color!(0xeceff4), // nord6
secondary: color!(0x05e81ac), // nord10
outgoing: color!(0xb48ead), // nord15
starred: color!(0xebcb8b), // nord13
starred: color!(0xD08770, 0.8), // nord12
text_headers: color!(0xeceff4), // nord6
text_body: color!(0x2e3440), // nord0
});

View file

@ -63,10 +63,10 @@ pub const DAY_PALETTE: Palette = Palette {
secondary: SECONDARY_DAY,
outgoing: SECONDARY_NIGHT,
starred: Color {
r: 245.0 / 255.0,
g: 193.0 / 255.0,
b: 39.0 / 255.0,
a: 0.8,
r: 215.0 / 255.0,
g: 163.0 / 255.0,
b: 19.0 / 255.0,
a: 0.9,
},
text_headers: Color::WHITE,
text_body: Color::BLACK,
@ -162,10 +162,10 @@ pub const MON_AMOUR_PALETTE: Palette = Palette {
primary: PRIMARY_MON_AMOUR,
secondary: SECONDARY_MON_AMOUR,
starred: Color {
r: 245.0 / 255.0,
g: 193.0 / 255.0,
b: 39.0 / 255.0,
a: 0.8,
r: 215.0 / 255.0,
g: 163.0 / 255.0,
b: 19.0 / 255.0,
a: 0.9,
},
outgoing: OUTGOING_MON_AMOUR,
text_headers: Color::WHITE,