iced_m3/lib.rs
1pub mod style;
2pub mod theme;
3pub mod widget;
4
5pub const DIM_ALPHA: f32 = 0.7;
6
7pub const DRAGGED_STATE_LAYER_OPACITY: f32 = 0.16;
8pub const PRESSED_STATE_LAYER_OPACITY: f32 = 0.1;
9pub const FOCUS_STATE_LAYER_OPACITY: f32 = 0.1;
10pub const HOVER_STATE_LAYER_OPACITY: f32 = 0.08;
11pub const DISABLED_STATE_LAYER_OPACITY: f32 = 0.38;