use dioxus_core::ScopeState;
use dioxus_hooks::{use_shared_state, use_shared_state_provider, UseSharedState};
pub fn use_init_theme(cx: &ScopeState, theme: Theme) {
use_shared_state_provider(cx, || theme);
}
pub fn use_init_default_theme(cx: &ScopeState) {
use_shared_state_provider(cx, Theme::default);
}
pub fn use_theme(cx: &ScopeState) -> &UseSharedState<Theme> {
use_shared_state::<Theme>(cx).unwrap()
}
pub fn use_get_theme(cx: &ScopeState) -> Theme {
use_shared_state::<Theme>(cx)
.map(|v| v.read().clone())
.unwrap_or_default()
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct DropdownItemTheme {
pub background: &'static str,
pub select_background: &'static str,
pub hover_background: &'static str,
pub font_theme: FontTheme,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct DropdownTheme {
pub desplegable_background: &'static str,
pub background_button: &'static str,
pub hover_background: &'static str,
pub font_theme: FontTheme,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ButtonTheme {
pub background: &'static str,
pub hover_background: &'static str,
pub font_theme: FontTheme,
pub border_fill: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct FontTheme {
pub color: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct SwitchTheme {
pub background: &'static str,
pub thumb_background: &'static str,
pub enabled_background: &'static str,
pub enabled_thumb_background: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ScrollbarTheme {
pub background: &'static str,
pub thumb_background: &'static str,
pub hover_thumb_background: &'static str,
pub active_thumb_background: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct BodyTheme {
pub background: &'static str,
pub color: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct SliderTheme {
pub background: &'static str,
pub thumb_background: &'static str,
pub thumb_inner_background: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TooltipTheme {
pub background: &'static str,
pub color: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ExternalLinkTheme {
pub highlight_color: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct AccordionTheme {
pub color: &'static str,
pub background: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct LoaderTheme {
pub primary_color: &'static str,
pub secondary_color: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ProgressBarTheme {
pub color: &'static str,
pub background: &'static str,
pub progress_background: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TableTheme {
pub color: &'static str,
pub background: &'static str,
pub arrow_fill: &'static str,
pub alternate_row_background: &'static str,
pub row_background: &'static str,
pub divider_fill: &'static str,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Theme {
pub name: &'static str,
pub body: BodyTheme,
pub button: ButtonTheme,
pub switch: SwitchTheme,
pub scrollbar: ScrollbarTheme,
pub slider: SliderTheme,
pub tooltip: TooltipTheme,
pub external_link: ExternalLinkTheme,
pub dropdown: DropdownTheme,
pub dropdown_item: DropdownItemTheme,
pub accordion: AccordionTheme,
pub loader: LoaderTheme,
pub progress_bar: ProgressBarTheme,
pub table: TableTheme,
}
impl Default for Theme {
fn default() -> Self {
LIGHT_THEME
}
}
pub const LIGHT_THEME: Theme = Theme {
name: "light",
body: BodyTheme {
background: "white",
color: "black",
},
slider: SliderTheme {
background: "rgb(210, 210, 210)",
thumb_background: "rgb(210, 210, 210)",
thumb_inner_background: "rgb(103, 80, 164)",
},
button: ButtonTheme {
background: "rgb(245, 245, 245)",
hover_background: "rgb(235, 235, 235)",
font_theme: FontTheme {
color: "rgb(10, 10, 10)",
},
border_fill: "rgb(210, 210, 210)",
},
switch: SwitchTheme {
background: "rgb(121, 116, 126)",
thumb_background: "rgb(231, 224, 236)",
enabled_background: "rgb(103, 80, 164)",
enabled_thumb_background: "rgb(234, 221, 255)",
},
scrollbar: ScrollbarTheme {
background: "rgb(225, 225, 225)",
thumb_background: "rgb(135, 135, 135)",
hover_thumb_background: "rgb(115, 115, 115)",
active_thumb_background: "rgb(95, 95, 95)",
},
tooltip: TooltipTheme {
background: "rgb(230,230,230)",
color: "rgb(25,25,25)",
},
external_link: ExternalLinkTheme {
highlight_color: "rgb(43,106,208)",
},
dropdown: DropdownTheme {
desplegable_background: "white",
background_button: "rgb(240, 240, 240)",
hover_background: "rgb(215, 215, 215)",
font_theme: FontTheme {
color: "rgb(10, 10, 10)",
},
},
dropdown_item: DropdownItemTheme {
background: "white",
select_background: "rgb(240, 240, 240)",
hover_background: "rgb(220, 220, 220)",
font_theme: FontTheme {
color: "rgb(10, 10, 10)",
},
},
accordion: AccordionTheme {
color: "black",
background: "rgb(215, 215, 215)",
},
loader: LoaderTheme {
primary_color: "rgb(50, 50, 50)",
secondary_color: "rgb(150, 150, 150)",
},
progress_bar: ProgressBarTheme {
color: "white",
background: "rgb(210, 210, 210)",
progress_background: "rgb(103, 80, 164)",
},
table: TableTheme {
color: "black",
background: "white",
arrow_fill: "rgb(40, 40, 40)",
row_background: "transparent",
alternate_row_background: "rgb(240, 240, 240)",
divider_fill: "rgb(200, 200, 200)",
},
};
pub const DARK_THEME: Theme = Theme {
name: "dark",
body: BodyTheme {
background: "rgb(25, 25, 25)",
color: "white",
},
slider: SliderTheme {
background: "rgb(60, 60, 60)",
thumb_background: "rgb(60, 60, 60)",
thumb_inner_background: "rgb(255, 95, 0)",
},
button: ButtonTheme {
background: "rgb(35, 35, 35)",
hover_background: "rgb(45, 45, 45)",
font_theme: FontTheme { color: "white" },
border_fill: "rgb(80, 80, 80)",
},
switch: SwitchTheme {
background: "rgb(60, 60, 60)",
thumb_background: "rgb(200, 200, 200)",
enabled_background: "rgb(255, 95, 0)",
enabled_thumb_background: "rgb(234, 221, 255)",
},
scrollbar: ScrollbarTheme {
background: "rgb(35, 35, 35)",
thumb_background: "rgb(100, 100, 100)",
hover_thumb_background: "rgb(120, 120, 120)",
active_thumb_background: "rgb(140, 140, 140)",
},
tooltip: TooltipTheme {
background: "rgb(35,35,35)",
color: "rgb(240,240,240)",
},
external_link: ExternalLinkTheme {
highlight_color: "rgb(43,106,208)",
},
dropdown: DropdownTheme {
desplegable_background: "rgb(25, 25, 25)",
background_button: "rgb(35, 35, 35)",
hover_background: "rgb(80, 80, 80)",
font_theme: FontTheme { color: "white" },
},
dropdown_item: DropdownItemTheme {
background: "rgb(35, 35, 35)",
select_background: "rgb(80, 80, 80)",
hover_background: "rgb(55, 55, 55)",
font_theme: FontTheme { color: "white" },
},
accordion: AccordionTheme {
color: "white",
background: "rgb(30, 30, 30)",
},
loader: LoaderTheme {
primary_color: "rgb(150, 150, 150)",
secondary_color: "rgb(255, 255, 255)",
},
progress_bar: ProgressBarTheme {
color: "white",
background: "rgb(60, 60, 60)",
progress_background: "rgb(255, 95, 0)",
},
table: TableTheme {
color: "white",
background: "rgb(25, 25, 25)",
arrow_fill: "rgb(150, 150, 150)",
row_background: "transparent",
alternate_row_background: "rgb(50, 50, 50)",
divider_fill: "rgb(100, 100, 100)",
},
};