all possible insanities simultaneously.

but at least deleting more than i'm writing (hopefully!)
This commit is contained in:
same mf who else 2026-03-21 15:30:25 +02:00
parent 9dbf4fcab5
commit 5d627f7669
5 changed files with 868 additions and 815 deletions

View file

@ -55,7 +55,15 @@ impl ItemColor {
}
}
pub struct ItemTheme {}
pub struct ItemTheme {
pub base: ItemColor,
pub light: ItemColor,
pub lighter: ItemColor,
pub lightest: ItemColor,
pub dark: ItemColor,
pub darker: ItemColor,
pub darkest: ItemColor,
}
impl_from!(ItemTheme: |base: ItemColor| Self::from_item_color(base));
impl_from!(ItemTheme: |base: Color| Self::from_tui_color(base));
impl ItemTheme {