Skip to main content

ResolvedThemeDefaults

Struct ResolvedThemeDefaults 

Source
pub struct ResolvedThemeDefaults {
Show 39 fields pub font: ResolvedFontSpec, pub line_height: f32, pub mono_font: ResolvedFontSpec, pub background: Rgba, pub foreground: Rgba, pub accent: Rgba, pub accent_foreground: Rgba, pub surface: Rgba, pub border: Rgba, pub muted: Rgba, pub shadow: Rgba, pub link: Rgba, pub selection: Rgba, pub selection_foreground: Rgba, pub selection_inactive: Rgba, pub disabled_foreground: Rgba, pub danger: Rgba, pub danger_foreground: Rgba, pub warning: Rgba, pub warning_foreground: Rgba, pub success: Rgba, pub success_foreground: Rgba, pub info: Rgba, pub info_foreground: Rgba, pub radius: f32, pub radius_lg: f32, pub frame_width: f32, pub disabled_opacity: f32, pub border_opacity: f32, pub shadow_enabled: bool, pub focus_ring_color: Rgba, pub focus_ring_width: f32, pub focus_ring_offset: f32, pub spacing: ResolvedThemeSpacing, pub icon_sizes: ResolvedIconSizes, pub text_scaling_factor: f32, pub reduce_motion: bool, pub high_contrast: bool, pub reduce_transparency: bool,
}
Expand description

Fully resolved global theme defaults where every field is guaranteed populated.

Mirrors crate::model::ThemeDefaults but with concrete (non-Option) types. Produced by the resolution/validation pipeline.

Fields§

§font: ResolvedFontSpec

Primary UI font.

§line_height: f32

Line height multiplier.

§mono_font: ResolvedFontSpec

Monospace font for code/terminal content.

§background: Rgba

Main window/surface background color.

§foreground: Rgba

Default text color.

§accent: Rgba

Accent/brand color for interactive elements.

§accent_foreground: Rgba

Text color used on accent-colored backgrounds.

§surface: Rgba

Elevated surface color.

§border: Rgba

Border/divider color.

§muted: Rgba

Secondary/subdued text color.

§shadow: Rgba

Drop shadow color.

§link: Rgba

Hyperlink text color.

§selection: Rgba

Selection highlight background.

§selection_foreground: Rgba

Text color over selection highlight.

§selection_inactive: Rgba

Selection background when window is unfocused.

§disabled_foreground: Rgba

Text color for disabled controls.

§danger: Rgba

Danger/error color.

§danger_foreground: Rgba

Text color on danger-colored backgrounds.

§warning: Rgba

Warning color.

§warning_foreground: Rgba

Text color on warning-colored backgrounds.

§success: Rgba

Success/confirmation color.

§success_foreground: Rgba

Text color on success-colored backgrounds.

§info: Rgba

Informational color.

§info_foreground: Rgba

Text color on info-colored backgrounds.

§radius: f32

Default corner radius in logical pixels.

§radius_lg: f32

Large corner radius.

§frame_width: f32

Border/frame width in logical pixels.

§disabled_opacity: f32

Opacity for disabled controls.

§border_opacity: f32

Border alpha multiplier.

§shadow_enabled: bool

Whether drop shadows are enabled.

§focus_ring_color: Rgba

Focus indicator outline color.

§focus_ring_width: f32

Focus indicator outline width.

§focus_ring_offset: f32

Gap between element edge and focus indicator.

§spacing: ResolvedThemeSpacing

Logical spacing scale.

§icon_sizes: ResolvedIconSizes

Per-context icon sizes.

§text_scaling_factor: f32

Text scaling factor (1.0 = no scaling).

§reduce_motion: bool

Whether the user has requested reduced motion.

§high_contrast: bool

Whether a high-contrast mode is active.

§reduce_transparency: bool

Whether the user has requested reduced transparency.

Trait Implementations§

Source§

impl Clone for ResolvedThemeDefaults

Source§

fn clone(&self) -> ResolvedThemeDefaults

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ResolvedThemeDefaults

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ResolvedThemeDefaults

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for ResolvedThemeDefaults

Source§

fn eq(&self, other: &ResolvedThemeDefaults) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for ResolvedThemeDefaults

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for ResolvedThemeDefaults

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,