Files
zap-stream-app/src/theme.rs
2025-01-09 14:26:47 +00:00

11 lines
481 B
Rust

use egui::{Color32, Margin};
pub const FONT_SIZE: f32 = 13.0;
pub const ROUNDING_DEFAULT: f32 = 12.0;
pub const MARGIN_DEFAULT: Margin = Margin::symmetric(12., 6.);
pub const PRIMARY: Color32 = Color32::from_rgb(248, 56, 217);
pub const NEUTRAL_500: Color32 = Color32::from_rgb(115, 115, 115);
pub const NEUTRAL_800: Color32 = Color32::from_rgb(38, 38, 38);
pub const NEUTRAL_900: Color32 = Color32::from_rgb(23, 23, 23);
pub const ZAP: Color32 = Color32::from_rgb(255, 141, 43);