#[non_exhaustive]pub struct Theme {
pub name: String,
pub fonts: Fonts,
pub font_size: u32,
pub styles: FontStyles,
pub colors: Colors,
pub spacing: Spacing,
}Expand description
A UI Theme containing font families, sizes, styles, and colors.
See the [Builder] examples for building a custom theme.
§Example
fn on_update(&mut self, s: &mut PixState) -> PixResult<()> {
s.fill(Color::CADET_BLUE); // Change font color
s.font_size(16)?;
s.font_style(FontStyle::UNDERLINE);
s.font_family(Font::from_file("Some font", "./some_font.ttf"))?;
s.text("Blue, underlined, size 16 text in Some Font")?;
Ok(())
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe name of this theme.
fonts: FontsThe font families used in this theme.
font_size: u32The body font size used in this theme.
styles: FontStylesThe font styles used in this theme.
colors: ColorsThe colors used in this theme.
spacing: SpacingThe padding, offsets, and other styles used in this theme.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Theme
impl<'de> Deserialize<'de> for Theme
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Theme
impl StructuralPartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.