pub struct Theme {Show 19 fields
pub notes_border: Color,
pub notes_title: Color,
pub notes_highlight_bg: Color,
pub notes_highlight_fg: Color,
pub note_fg: Color,
pub section_fg: Color,
pub timestamp_fg: Color,
pub input_fg: Color,
pub input_title: Color,
pub help_key: Color,
pub help_desc: Color,
pub overlay_border: Color,
pub overlay_title: Color,
pub overlay_highlight_bg: Color,
pub overlay_highlight_fg: Color,
pub overlay_bg: Color,
pub editing_fg: Color,
pub editing_title: Color,
pub overlay_text: Color,
}Fields§
§notes_border: Color§notes_title: Color§notes_highlight_bg: Color§notes_highlight_fg: Color§note_fg: Color§section_fg: Color§timestamp_fg: Color§input_fg: Color§input_title: Color§help_key: Color§help_desc: Color§overlay_border: Color§overlay_title: Color§overlay_highlight_bg: Color§overlay_highlight_fg: Color§overlay_bg: Color§editing_fg: Color§editing_title: Color§overlay_text: ColorImplementations§
Trait Implementations§
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§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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