pub struct CustomThemeColors {Show 19 fields
pub active_border: String,
pub inactive_border: String,
pub searching_border: String,
pub selected_bg: String,
pub selected_inactive_bg: String,
pub visual_bg: String,
pub timer_active_bg: String,
pub row_alternate_bg: String,
pub edit_bg: String,
pub focus_bg: String,
pub primary_text: String,
pub secondary_text: String,
pub highlight_text: String,
pub success: String,
pub warning: String,
pub error: String,
pub info: String,
pub timer_text: String,
pub badge: String,
}Expand description
Custom theme color definitions (supports hex colors, RGB tuples, and named colors)
Fields§
§active_border: String§inactive_border: String§searching_border: String§selected_bg: String§selected_inactive_bg: String§visual_bg: String§timer_active_bg: String§row_alternate_bg: String§edit_bg: String§focus_bg: String§primary_text: String§secondary_text: String§highlight_text: String§success: String§warning: String§error: String§info: String§timer_text: String§badge: StringTrait Implementations§
Source§impl Clone for CustomThemeColors
impl Clone for CustomThemeColors
Source§fn clone(&self) -> CustomThemeColors
fn clone(&self) -> CustomThemeColors
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomThemeColors
impl Debug for CustomThemeColors
Source§impl<'de> Deserialize<'de> for CustomThemeColors
impl<'de> Deserialize<'de> for CustomThemeColors
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
Auto Trait Implementations§
impl Freeze for CustomThemeColors
impl RefUnwindSafe for CustomThemeColors
impl Send for CustomThemeColors
impl Sync for CustomThemeColors
impl Unpin for CustomThemeColors
impl UnsafeUnpin for CustomThemeColors
impl UnwindSafe for CustomThemeColors
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more