7 lines
253 B
Rust
7 lines
253 B
Rust
use crate::prelude::*;
|
|
|
|
pub const LINE_HEIGHT: f32 = 21.0;
|
|
pub const NORMAL_BUTTON: Color = Color::srgb(0.15, 0.15, 0.15);
|
|
pub const HOVERED_BUTTON: Color = Color::srgb(0.25, 0.25, 0.25);
|
|
pub const PRESSED_BUTTON: Color = Color::srgb(0.35, 0.75, 0.35);
|