Skip to main content

argui_core/
backdrop.rs

1/// Semantic materials for an operating-system background effect.
2/// The compositor controls the blur kernel and may use the same material for all variants.
3#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
4pub enum BackdropMaterial {
5    #[default]
6    Glass,
7    Sidebar,
8    Header,
9}