use bevy::prelude::*;
pub(crate) const LABEL_TEXT: Color = Color::srgb(0.867, 0.827, 0.412);
pub(crate) const HEADER_TEXT: Color = Color::srgb(0.988, 0.984, 0.800);
pub(crate) const BUTTON_TEXT: Color = Color::srgb(0.925, 0.925, 0.925);
pub(crate) const BUTTON_BACKGROUND: Color = Color::srgb(0.275, 0.400, 0.750);
pub(crate) const BUTTON_HOVERED_BACKGROUND: Color = Color::srgb(0.384, 0.600, 0.820);
pub(crate) const BUTTON_PRESSED_BACKGROUND: Color = Color::srgb(0.239, 0.286, 0.600);
pub(crate) const SCREEN_BACKGROUND: Color = Color::srgb(0.16862746, 0.17254902, 0.18431373);