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
use theme::Theme;

mod theme;

pub mod gray;

pub fn primary_content() -> [u8; 4] {
    theme::current().primary_content()
}

pub fn secondary_content() -> [u8; 4] {
    theme::current().secondary_content()
}

pub fn tertiary_content() -> [u8; 4] {
    theme::current().tertiary_content()
}

pub fn quaternary_content() -> [u8; 4] {
    theme::current().quaternary_content()
}

pub fn primary_shapes() -> [u8; 4] {
    theme::current().primary_shapes()
}

pub fn secondary_shapes() -> [u8; 4] {
    theme::current().secondary_shapes()
}

pub fn tertiary_shapes() -> [u8; 4] {
    theme::current().tertiary_shapes()
}

pub fn quaternary_shapes() -> [u8; 4] {
    theme::current().quaternary_shapes()
}

pub fn primary_background() -> [u8; 4] {
    theme::current().primary_background()
}

pub fn secondary_background() -> [u8; 4] {
    theme::current().secondary_background()
}

pub fn tertiary_background() -> [u8; 4] {
    theme::current().tertiary_background()
}

pub fn quaternary_background() -> [u8; 4] {
    theme::current().quaternary_background()
}