pub struct Theme {
pub background: Color,
pub surface: Color,
pub outline: Color,
pub contrast: Color,
pub primary: Color,
pub secondary: Color,
pub accent: Color,
pub danger: Color,
pub success: Color,
pub warning: Color,
pub info: Color,
}
Expand description
A theme.
Fields§
§background: Color
The background color.
surface: Color
The surface color.
outline: Color
The outline color.
contrast: Color
The contrast color.
primary: Color
The primary color.
secondary: Color
The secondary color.
accent: Color
The accent color.
danger: Color
The danger color.
success: Color
The success color.
warning: Color
The warning color.
info: Color
The info color.
Implementations§
Source§impl Theme
impl Theme
Sourcepub fn surface(&self, level: i8) -> Color
pub fn surface(&self, level: i8) -> Color
Get the surface color with a specific level.
Common levels are:
-2
: very low-1
: low0
: normal1
: high2
: very high
Sourcepub fn outline_low(&self) -> Color
pub fn outline_low(&self) -> Color
Get the low contrast outline color.
Sourcepub fn contrast_low(&self) -> Color
pub fn contrast_low(&self) -> Color
Get the low contrast contrast color.
Sourcepub fn primary_low(&self) -> Color
pub fn primary_low(&self) -> Color
Get the low contrast primary color.
Sourcepub fn secondary_low(&self) -> Color
pub fn secondary_low(&self) -> Color
Get the low contrast secondary color.
Sourcepub fn accent_low(&self) -> Color
pub fn accent_low(&self) -> Color
Get the low contrast accent color.
Sourcepub fn danger_low(&self) -> Color
pub fn danger_low(&self) -> Color
Get the low contrast danger color.
Sourcepub fn success_low(&self) -> Color
pub fn success_low(&self) -> Color
Get the low contrast success color.
Sourcepub fn warning_low(&self) -> Color
pub fn warning_low(&self) -> Color
Get the low contrast warning color.
Trait Implementations§
Source§impl Style for Theme
impl Style for Theme
Source§fn default_style() -> StyleBuilder<Theme>
fn default_style() -> StyleBuilder<Theme>
The default style of the object.
impl Copy for Theme
Auto Trait Implementations§
impl Freeze for Theme
impl RefUnwindSafe for Theme
impl Send for Theme
impl Sync for Theme
impl Unpin for Theme
impl UnwindSafe for Theme
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more