From c3aefdc27b1b1f1825beb1cb4621022971fbb31d Mon Sep 17 00:00:00 2001 From: David Aguiló Domínguez Date: Wed, 25 Sep 2024 13:52:34 +0200 Subject: Added color for warning for MOONFLY and NIGHTFLY --- core/src/theme/palette.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/src/theme') diff --git a/core/src/theme/palette.rs b/core/src/theme/palette.rs index fd4f15d2..31df15e9 100644 --- a/core/src/theme/palette.rs +++ b/core/src/theme/palette.rs @@ -281,6 +281,7 @@ impl Palette { primary: color!(0x80a0ff), // Blue (normal) success: color!(0x8cc85f), // Green (normal) danger: color!(0xff5454), // Red (normal) + warning: color!(0xe3c78a), // Yellow (normal) }; /// The built-in [Nightfly] variant of a [`Palette`]. @@ -292,6 +293,7 @@ impl Palette { primary: color!(0x82aaff), // Blue (normal) success: color!(0xa1cd5e), // Green (normal) danger: color!(0xfc514e), // Red (normal) + warning: color!(0xe3d18a), // Yellow (normal) }; /// The built-in [Oxocarbon] variant of a [`Palette`]. -- cgit