fltk_theme/colors/sweet/
light.rs

1#![allow(non_upper_case_globals)]
2
3use fltk::enums::Color;
4use fltk::utils::oncelock::Lazy;
5
6pub static backgroundColor2: Lazy<Color> = Lazy::new(|| Color::from_rgb(230, 230, 230));
7pub static windowBackgroundColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(232, 234, 235));
8pub static labelColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(49, 54, 61));
9pub static controlBackgroundColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(230, 230, 230));
10pub static secondaryLabelColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(140, 142, 146));
11pub static tertiaryLabelColor: Lazy<Color> =
12    Lazy::new(|| Color::from_rgba_tuple((140, 142, 146, 191)));
13pub static quaternaryLabelColor: Lazy<Color> =
14    Lazy::new(|| Color::from_rgba_tuple((140, 142, 146, 127)));
15pub static textColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(49, 54, 61));
16pub static placeholderTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(140, 142, 146));
17pub static selectedTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(254, 254, 254));
18pub static textBackgroundColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(235, 240, 245));
19pub static selectedTextBackgroundColor: Lazy<Color> =
20    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
21pub static keyboardFocusIndicatorColor: Lazy<Color> =
22    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 191)));
23pub static unemphasizedSelectedTextColor: Lazy<Color> =
24    Lazy::new(|| Color::from_rgb(254, 254, 254));
25pub static unemphasizedSelectedTextBackgroundColor: Lazy<Color> =
26    Lazy::new(|| Color::from_rgb(232, 234, 236));
27pub static linkColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(82, 148, 226));
28pub static separatorColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 63)));
29pub static selectedContentBackgroundColor: Lazy<Color> =
30    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
31pub static unemphasizedSelectedContentBackgroundColor: Lazy<Color> =
32    Lazy::new(|| Color::from_rgb(232, 234, 236));
33pub static selectedMenuItemTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(254, 254, 254));
34pub static gridColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(22, 25, 37));
35pub static headerTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(49, 54, 61));
36pub static origControlAccentColor: Lazy<Color> =
37    Lazy::new(|| Color::from_rgba_tuple((0, 232, 198, 255))); // Sweet's original green color for checkboxes
38pub static controlAccentColor: Lazy<Color> =
39    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
40pub static controlColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 255, 255, 255)));
41pub static controlTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(49, 54, 61));
42pub static disabledControlTextColor: Lazy<Color> =
43    Lazy::new(|| Color::from_rgba_tuple((140, 142, 146, 127)));
44pub static selectedControlColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(197, 14, 210));
45pub static selectedControlTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(49, 54, 61));
46pub static alternateSelectedControlTextColor: Lazy<Color> =
47    Lazy::new(|| Color::from_rgb(254, 254, 254));
48pub static scrubberTexturedBackgroundColor: Lazy<Color> =
49    Lazy::new(|| Color::from_rgb(211, 218, 227));
50pub static windowFrameTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(49, 54, 61));
51pub static underPageBackgroundColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(230, 230, 230));
52pub static findHighlightColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(255, 106, 0));
53pub static highlightColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(197, 14, 210));
54pub static shadowColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
55pub static systemBrownColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(155, 123, 85));
56pub static systemFuchsiaColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(197, 14, 210));
57pub static systemGrayColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(133, 133, 139));
58pub static systemGreenColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(48, 211, 58));
59pub static systemIndigoColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(74, 64, 223));
60pub static systemOrangeColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(252, 141, 13));
61pub static systemPinkColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(251, 25, 76));
62pub static systemPurpleColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(157, 51, 213));
63pub static systemRedColor: Lazy<Color> = Lazy::new(|| Color::from_rgb(251, 43, 44));
64pub static systemTealColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((76, 187, 242, 255)));
65pub static systemYellowColor: Lazy<Color> =
66    Lazy::new(|| Color::from_rgba_tuple((254, 207, 14, 255)));
67pub static systemBlueColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((16, 106, 254, 255)));
68pub static systemCyanColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((90, 200, 245, 255)));