Skip to main content

ResolvedThemeDefaults

Struct ResolvedThemeDefaults 

Source
pub struct ResolvedThemeDefaults {
Show 36 fields pub font: ResolvedFontSpec, pub line_height: f32, pub mono_font: ResolvedFontSpec, pub background_color: Rgba, pub text_color: Rgba, pub accent_color: Rgba, pub accent_text_color: Rgba, pub surface_color: Rgba, pub muted_color: Rgba, pub shadow_color: Rgba, pub link_color: Rgba, pub selection_background: Rgba, pub selection_text_color: Rgba, pub selection_inactive_background: Rgba, pub text_selection_background: Rgba, pub text_selection_color: Rgba, pub disabled_text_color: Rgba, pub danger_color: Rgba, pub danger_text_color: Rgba, pub warning_color: Rgba, pub warning_text_color: Rgba, pub success_color: Rgba, pub success_text_color: Rgba, pub info_color: Rgba, pub info_text_color: Rgba, pub border: ResolvedBorderSpec, pub disabled_opacity: f32, pub focus_ring_color: Rgba, pub focus_ring_width: f32, pub focus_ring_offset: f32, pub icon_sizes: ResolvedIconSizes, pub font_dpi: f32, 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_color: Rgba

Main window/surface background color.

§text_color: Rgba

Default text color.

§accent_color: Rgba

Accent/brand color for interactive elements.

§accent_text_color: Rgba

Text color used on accent-colored backgrounds.

§surface_color: Rgba

Elevated surface color.

§muted_color: Rgba

Secondary/subdued text color.

§shadow_color: Rgba

Drop shadow color.

§link_color: Rgba

Hyperlink text color.

§selection_background: Rgba

Selection highlight background.

§selection_text_color: Rgba

Text color over selection highlight.

§selection_inactive_background: Rgba

Selection background when window is unfocused.

§text_selection_background: Rgba

Text selection background (inline text highlight).

§text_selection_color: Rgba

Text selection color (inline text highlight).

§disabled_text_color: Rgba

Text color for disabled controls.

§danger_color: Rgba

Danger/error color.

§danger_text_color: Rgba

Text color on danger-colored backgrounds.

§warning_color: Rgba

Warning color.

§warning_text_color: Rgba

Text color on warning-colored backgrounds.

§success_color: Rgba

Success/confirmation color.

§success_text_color: Rgba

Text color on success-colored backgrounds.

§info_color: Rgba

Informational color.

§info_text_color: Rgba

Text color on info-colored backgrounds.

§border: ResolvedBorderSpec

Border sub-struct (color, corner_radius, line_width, etc.).

§disabled_opacity: f32

Opacity for disabled controls.

§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.

§icon_sizes: ResolvedIconSizes

Per-context icon sizes.

§font_dpi: f32

Font DPI used for pt-to-px conversion during resolution. Defaults to 96.0 when not set on the unresolved variant.

§text_scaling_factor: f32

Text scaling factor – an accessibility multiplier for enlarged text (1.0 = no scaling). Connectors and apps should multiply font.size by this factor when the user’s preference for larger text should be honored. This is independent of font_dpi (which handles DPI-based point-to-pixel conversion).

§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>,