Tweak colors of Light and Dark themes

This commit is contained in:
Héctor Ramón Jiménez 2025-02-22 00:58:06 +01:00
parent 954f49d4d7
commit 412dfe0e60
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -29,7 +29,7 @@ impl Palette {
pub const LIGHT: Self = Self {
background: Color::WHITE,
text: Color::BLACK,
primary: color!(0x5e7ce2),
primary: color!(0x5865F2),
success: color!(0x12664f),
warning: color!(0xffc14e),
danger: color!(0xc3423f),
@ -37,9 +37,9 @@ impl Palette {
/// The built-in dark variant of a [`Palette`].
pub const DARK: Self = Self {
background: color!(0x202225),
background: color!(0x313338),
text: Color::from_rgb(0.90, 0.90, 0.90),
primary: color!(0x5e7ce2),
primary: color!(0x5865F2),
success: color!(0x12664f),
warning: color!(0xffc14e),
danger: color!(0xc3423f),