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
use super::base::BASE_THEME;
use crate::{
    cow_borrowed,
    theming::*,
};

pub const DARK_THEME: Theme = Theme {
    name: "dark",
    colors: ColorsSheet {
        primary: cow_borrowed!("rgb(103, 80, 164)"),
        secondary: cow_borrowed!("rgb(202, 193, 227)"),
        tertiary: cow_borrowed!("rgb(79, 61, 130)"),
        surface: cow_borrowed!("rgb(60, 60, 60)"),
        secondary_surface: cow_borrowed!("rgb(45, 45, 45)"),
        neutral_surface: cow_borrowed!("rgb(25, 25, 25)"),
        focused_surface: cow_borrowed!("rgb(15, 15, 15)"),
        opposite_surface: cow_borrowed!("rgb(125, 125, 125)"),
        secondary_opposite_surface: cow_borrowed!("rgb(150, 150, 150)"),
        tertiary_opposite_surface: cow_borrowed!("rgb(170, 170, 170)"),
        background: cow_borrowed!("rgb(20, 20, 20)"),
        focused_border: cow_borrowed!("rgb(110, 110, 110)"),
        solid: cow_borrowed!("rgb(240, 240, 240)"),
        color: cow_borrowed!("rgb(250, 250, 250)"),
        primary_color: cow_borrowed!("white"),
        placeholder_color: cow_borrowed!("rgb(210, 210, 210)"),
        highlight_color: cow_borrowed!("rgb(96, 145, 224)"),
    },
    ..BASE_THEME
};

pub const LIGHT_THEME: Theme = Theme {
    name: "light",
    colors: ColorsSheet {
        primary: cow_borrowed!("rgb(103, 80, 164)"),
        secondary: cow_borrowed!("rgb(202, 193, 227)"),
        tertiary: cow_borrowed!("rgb(79, 61, 130)"),
        surface: cow_borrowed!("rgb(210, 210, 210)"),
        secondary_surface: cow_borrowed!("rgb(225, 225, 225)"),
        neutral_surface: cow_borrowed!("rgb(245, 245, 245)"),
        focused_surface: cow_borrowed!("rgb(235, 235, 235)"),
        opposite_surface: cow_borrowed!("rgb(125, 125, 125)"),
        secondary_opposite_surface: cow_borrowed!("rgb(110, 110, 125)"),
        tertiary_opposite_surface: cow_borrowed!("rgb(90, 90, 90)"),
        background: cow_borrowed!("rgb(250, 250, 250)"),
        solid: cow_borrowed!("rgb(35, 35, 35)"),
        focused_border: cow_borrowed!("rgb(180, 180, 180)"),
        color: cow_borrowed!("rgb(10, 10, 10)"),
        primary_color: cow_borrowed!("white"),
        placeholder_color: cow_borrowed!("rgb(100, 100, 100)"),
        highlight_color: cow_borrowed!("rgb(38, 89, 170)"),
    },
    ..BASE_THEME
};

pub const BANANA_THEME: Theme = Theme {
    name: "banana",
    colors: ColorsSheet {
        primary: cow_borrowed!("rgb(240, 200, 50)"),
        secondary: cow_borrowed!("rgb(255, 250, 160)"),
        tertiary: cow_borrowed!("rgb(186, 153, 37)"),
        surface: cow_borrowed!("rgb(240, 229, 189)"),
        secondary_surface: cow_borrowed!("rgb(250, 240, 210)"),
        neutral_surface: cow_borrowed!("rgb(255, 245, 220)"),
        focused_surface: cow_borrowed!("rgb(255, 238, 170)"),
        opposite_surface: cow_borrowed!("rgb(139, 69, 19)"),
        secondary_opposite_surface: cow_borrowed!("rgb(120, 80, 20)"),
        tertiary_opposite_surface: cow_borrowed!("rgb(90, 60, 10)"),
        background: cow_borrowed!("rgb(255, 255, 224)"),
        solid: cow_borrowed!("rgb(110, 70, 10)"),
        focused_border: cow_borrowed!("rgb(255, 239, 151)"),
        color: cow_borrowed!("rgb(85, 60, 5)"),
        primary_color: cow_borrowed!("rgb(69, 49, 7)"),
        placeholder_color: cow_borrowed!("rgb(56, 44, 5)"),
        highlight_color: cow_borrowed!("rgb(143, 114, 6)"),
    },
    ..BASE_THEME
};