1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#![allow(dead_code)]
use iced_widget::text::{Catalog, Style, StyleFn};
use crate::Theme;
impl Catalog for Theme {
type Class<'a> = StyleFn<'a, Self>;
fn default<'a>() -> Self::Class<'a> {
Box::new(none)
}
fn style(&self, class: &Self::Class<'_>) -> Style {
class(self)
}
}
pub fn none(_: &Theme) -> Style {
Style { color: None }
}
pub fn primary(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().primary.text),
}
}
pub fn primary_container(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().primary.container_text),
}
}
pub fn secondary(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().secondary.text),
}
}
pub fn secondary_container(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().secondary.container_text),
}
}
pub fn tertiary(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().tertiary.text),
}
}
pub fn tertiary_container(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().tertiary.container_text),
}
}
pub fn error(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().error.text),
}
}
pub fn error_container(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().error.container_text),
}
}
pub fn surface(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().surface.text),
}
}
pub fn surface_variant(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().surface.text_variant),
}
}
pub fn inverse_surface(theme: &Theme) -> Style {
Style {
color: Some(theme.colors().inverse.inverse_surface_text),
}
}
|