first committ, still fighting with... a lot! 😅
This commit is contained in:
commit
495556500f
74 changed files with 18135 additions and 0 deletions
16
src/theme/palette.rs
Normal file
16
src/theme/palette.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
use bevy::prelude::*;
|
||||
|
||||
/// #ddd369
|
||||
pub const LABEL_TEXT: Color = Color::srgb(0.867, 0.827, 0.412);
|
||||
|
||||
/// #fcfbcc
|
||||
pub const HEADER_TEXT: Color = Color::srgb(0.988, 0.984, 0.800);
|
||||
|
||||
/// #ececec
|
||||
pub const BUTTON_TEXT: Color = Color::srgb(0.925, 0.925, 0.925);
|
||||
/// #4666bf
|
||||
pub const BUTTON_BACKGROUND: Color = Color::srgb(0.275, 0.400, 0.750);
|
||||
/// #6299d1
|
||||
pub const BUTTON_HOVERED_BACKGROUND: Color = Color::srgb(0.384, 0.600, 0.820);
|
||||
/// #3d4999
|
||||
pub const BUTTON_PRESSED_BACKGROUND: Color = Color::srgb(0.239, 0.286, 0.600);
|
Loading…
Add table
Add a link
Reference in a new issue