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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
use crate::{Color, Text};

pub mod button_style;
pub use button_style::ButtonStyle;

#[derive(Clone)]
pub struct Style {
    pub panel_bg: Color,
    pub field_bg: Color,
    pub dropdown_border: Color,
    pub icon_fg: Color,
    pub primary_fg: Color,
    pub text_primary_color: Color,
    pub text_secondary_color: Color,
    pub text_tooltip_color: Color,
    pub text_hotkey_color: Color,
    pub text_destructive_color: Color,
    pub loading_tips: Text,
    pub section_bg: Color,
    pub section_outline: OutlineStyle,
    pub btn_plain: ButtonStyle,
    pub btn_outline: ButtonStyle,
    pub btn_floating: ButtonStyle,
    pub btn_solid: ButtonStyle,
    pub btn_tab: ButtonStyle,
    pub btn_solid_destructive: ButtonStyle,
    pub btn_plain_destructive: ButtonStyle,
    pub btn_solid_primary: ButtonStyle,
    pub btn_plain_primary: ButtonStyle,
}

pub type OutlineStyle = (f64, Color);

pub static DEFAULT_OUTLINE_THICKNESS: f64 = 2.0;

// This is #EE702E, called "ab_orange_1" in Figma
const AB_ORANGE_1: Color = Color::rgb_f(0.933, 0.439, 0.18);

// Some ButtonStyles are shared across Styles
impl ButtonStyle {
    pub fn solid_dark_fg() -> Self {
        ButtonStyle {
            fg: hex("#4C4C4C"),
            fg_disabled: hex("#4C4C4C").alpha(0.3),
            bg: Color::WHITE.alpha(0.8),
            bg_hover: Color::WHITE,
            bg_disabled: Color::grey(0.8),
            outline: (DEFAULT_OUTLINE_THICKNESS, Color::WHITE.alpha(0.6)),
        }
    }

    pub fn outline_dark_fg() -> Self {
        ButtonStyle {
            fg: hex("#4C4C4C"),
            fg_disabled: hex("#4C4C4C").alpha(0.3),
            bg: Color::CLEAR,
            bg_hover: hex("#4C4C4C").alpha(0.1),
            bg_disabled: Color::CLEAR,
            outline: (DEFAULT_OUTLINE_THICKNESS, hex("#4C4C4C")),
        }
    }

    pub fn plain_dark_fg() -> Self {
        ButtonStyle {
            fg: hex("#4C4C4C"),
            fg_disabled: hex("#4C4C4C").alpha(0.3),
            bg: Color::CLEAR,
            bg_hover: hex("#4C4C4C").alpha(0.1),
            bg_disabled: Color::CLEAR,
            outline: (0.0, Color::CLEAR),
        }
    }

    pub fn solid_light_fg() -> Self {
        ButtonStyle {
            fg: hex("#F2F2F2"),
            fg_disabled: hex("#F2F2F2").alpha(0.3),
            bg: hex("#003046").alpha(0.8),
            bg_hover: hex("#003046"),
            bg_disabled: Color::grey(0.1),
            outline: (DEFAULT_OUTLINE_THICKNESS, hex("#003046").alpha(0.6)),
        }
    }

    pub fn outline_light_fg() -> Self {
        ButtonStyle {
            fg: hex("#F2F2F2"),
            fg_disabled: hex("#F2F2F2").alpha(0.3),
            bg: Color::CLEAR,
            bg_hover: hex("#F2F2F2").alpha(0.1),
            bg_disabled: Color::CLEAR,
            outline: (DEFAULT_OUTLINE_THICKNESS, hex("#F2F2F2")),
        }
    }

    pub fn plain_light_fg() -> Self {
        ButtonStyle {
            fg: hex("#F2F2F2"),
            fg_disabled: hex("#F2F2F2").alpha(0.3),
            bg: Color::CLEAR,
            bg_hover: hex("#F2F2F2").alpha(0.1),
            bg_disabled: Color::CLEAR,
            outline: (0.0, Color::CLEAR),
        }
    }

    pub fn solid_primary() -> Self {
        Self {
            fg: hex("#F2F2F2"),
            fg_disabled: hex("#F2F2F2"),
            bg: AB_ORANGE_1.tint(0.1),
            bg_hover: AB_ORANGE_1,
            bg_disabled: AB_ORANGE_1.tint(0.3),
            outline: (DEFAULT_OUTLINE_THICKNESS, AB_ORANGE_1.alpha(0.6)),
        }
    }

    pub fn plain_primary() -> Self {
        Self {
            fg: AB_ORANGE_1,
            fg_disabled: AB_ORANGE_1.tint(0.3),
            bg: Color::CLEAR,
            bg_hover: AB_ORANGE_1.tint(0.1),
            bg_disabled: Color::CLEAR,
            outline: (0.0, Color::CLEAR),
        }
    }

    fn solid_destructive() -> Self {
        Self {
            fg: hex("#F2F2F2"),
            fg_disabled: hex("#F2F2F2").alpha(0.3),
            bg: hex("#FF5E5E").alpha(0.8),
            bg_hover: hex("#FF5E5E"),
            bg_disabled: Color::grey(0.1),
            outline: (DEFAULT_OUTLINE_THICKNESS, hex("#FF5E5E").alpha(0.6)),
        }
    }

    fn plain_destructive() -> ButtonStyle {
        Self {
            fg: hex("#FF5E5E"),
            fg_disabled: hex("#FF5E5E").alpha(0.3),
            bg: Color::CLEAR,
            bg_hover: hex("#FF5E5E").alpha(0.1),
            bg_disabled: Color::CLEAR,
            outline: (0.0, Color::CLEAR),
        }
    }
}

impl Style {
    pub fn light_bg() -> Style {
        Style {
            // shade panel_bg a bit to increase contrast vs. the section_bg, otherwise
            // the section (and tabs) can be hard to distinguish
            panel_bg: Color::WHITE.shade(0.03).alpha(0.95),
            field_bg: hex("#F2F2F2"),
            dropdown_border: hex("#4C4C4C"),
            // TODO: replace inner_panel_bg with this
            section_bg: Color::WHITE,
            section_outline: (2.0, Color::WHITE.shade(0.1)),
            loading_tips: Text::new(),
            icon_fg: hex("#4C4C4C"),
            primary_fg: AB_ORANGE_1,
            text_primary_color: hex("#4C4C4C"),
            text_secondary_color: hex("#4C4C4C").tint(0.2),
            text_hotkey_color: AB_ORANGE_1,
            text_tooltip_color: Color::WHITE,
            text_destructive_color: hex("#FF5E5E"),
            btn_outline: ButtonStyle::outline_dark_fg(),
            btn_solid: ButtonStyle::solid_light_fg(),
            btn_plain: ButtonStyle::plain_dark_fg(),
            btn_tab: ButtonStyle {
                fg: hex("#4C4C4C").tint(0.2),
                fg_disabled: hex("#4C4C4C"),
                bg: Color::CLEAR,
                bg_hover: hex("#4C4C4C").alpha(0.1),
                bg_disabled: Color::WHITE,
                outline: (0.0, Color::CLEAR),
            },
            btn_floating: ButtonStyle::solid_dark_fg(),
            btn_solid_destructive: ButtonStyle::solid_destructive(),
            btn_plain_destructive: ButtonStyle::plain_destructive(),
            btn_solid_primary: ButtonStyle::solid_primary(),
            btn_plain_primary: ButtonStyle::plain_primary(),
        }
    }

    pub fn dark_bg() -> Style {
        let navy = hex("#003046");
        Style {
            // tint panel_bg a bit to increase contrast vs. the section_bg, otherwise
            // the section (and tabs) can be hard to distinguish
            panel_bg: navy.tint(0.05).alpha(0.9),
            field_bg: navy.shade(0.2),
            dropdown_border: Color::WHITE,
            // TODO: replace inner_panel_bg with this
            section_bg: navy,
            section_outline: (DEFAULT_OUTLINE_THICKNESS, navy.shade(0.2)),
            loading_tips: Text::new(),
            icon_fg: Color::WHITE,
            primary_fg: AB_ORANGE_1,
            text_primary_color: Color::WHITE,
            text_secondary_color: Color::WHITE.shade(0.2),
            text_hotkey_color: Color::GREEN,
            text_tooltip_color: Color::WHITE,
            text_destructive_color: hex("#FF5E5E"),
            btn_outline: ButtonStyle::outline_light_fg(),
            btn_solid: ButtonStyle::solid_dark_fg(),
            btn_plain: ButtonStyle::plain_light_fg(),
            btn_tab: ButtonStyle {
                fg: hex("#F2F2F2").shade(0.4),
                fg_disabled: hex("#F2F2F2"),
                bg: Color::CLEAR,
                bg_hover: hex("#F2F2F2").alpha(0.1),
                bg_disabled: navy,
                outline: (0.0, Color::CLEAR),
            },
            btn_floating: ButtonStyle::solid_light_fg(),
            btn_solid_destructive: ButtonStyle::solid_destructive(),
            btn_plain_destructive: ButtonStyle::plain_destructive(),
            btn_solid_primary: ButtonStyle::solid_primary(),
            btn_plain_primary: ButtonStyle::plain_primary(),
        }
    }
}

// Convenience
fn hex(x: &str) -> Color {
    Color::hex(x)
}