fltk_theme/colors/sweet/
dark.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_rgba_tuple((22, 25, 37, 255)));
7pub static windowBackgroundColor: Lazy<Color> =
8    Lazy::new(|| Color::from_rgba_tuple((24, 27, 40, 255)));
9pub static labelColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((195, 199, 209, 255)));
10pub static controlBackgroundColor: Lazy<Color> =
11    Lazy::new(|| Color::from_rgba_tuple((30, 34, 51, 255)));
12pub static secondaryLabelColor: Lazy<Color> =
13    Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 255)));
14pub static tertiaryLabelColor: Lazy<Color> =
15    Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 191)));
16pub static quaternaryLabelColor: Lazy<Color> =
17    Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 127)));
18pub static textColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((211, 218, 227, 255)));
19pub static placeholderTextColor: Lazy<Color> =
20    Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 255)));
21pub static selectedTextColor: Lazy<Color> =
22    Lazy::new(|| Color::from_rgba_tuple((254, 254, 254, 255)));
23pub static textBackgroundColor: Lazy<Color> =
24    Lazy::new(|| Color::from_rgba_tuple((30, 34, 51, 255)));
25pub static selectedTextBackgroundColor: Lazy<Color> =
26    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
27pub static keyboardFocusIndicatorColor: Lazy<Color> =
28    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 191)));
29pub static unemphasizedSelectedTextColor: Lazy<Color> =
30    Lazy::new(|| Color::from_rgba_tuple((254, 254, 254, 255)));
31pub static unemphasizedSelectedTextBackgroundColor: Lazy<Color> =
32    Lazy::new(|| Color::from_rgba_tuple((47, 52, 63, 255)));
33pub static linkColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((82, 148, 226, 255)));
34pub static separatorColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 63)));
35pub static selectedContentBackgroundColor: Lazy<Color> =
36    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
37pub static unemphasizedSelectedContentBackgroundColor: Lazy<Color> =
38    Lazy::new(|| Color::from_rgba_tuple((47, 52, 63, 255)));
39pub static selectedMenuItemTextColor: Lazy<Color> =
40    Lazy::new(|| Color::from_rgba_tuple((254, 254, 254, 255)));
41pub static gridColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((22, 25, 37, 255)));
42pub static headerTextColor: Lazy<Color> =
43    Lazy::new(|| Color::from_rgba_tuple((211, 218, 227, 255)));
44pub static origControlAccentColor: Lazy<Color> =
45    Lazy::new(|| Color::from_rgba_tuple((0, 232, 198, 255))); // Sweet's original green color for checkboxes
46pub static controlAccentColor: Lazy<Color> =
47    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
48pub static controlColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 191)));
49pub static controlTextColor: Lazy<Color> =
50    Lazy::new(|| Color::from_rgba_tuple((195, 199, 209, 255)));
51pub static disabledControlTextColor: Lazy<Color> =
52    Lazy::new(|| Color::from_rgba_tuple((102, 106, 115, 127)));
53pub static selectedControlColor: Lazy<Color> =
54    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
55pub static selectedControlTextColor: Lazy<Color> =
56    Lazy::new(|| Color::from_rgba_tuple((195, 199, 209, 255)));
57pub static alternateSelectedControlTextColor: Lazy<Color> =
58    Lazy::new(|| Color::from_rgba_tuple((254, 254, 254, 255)));
59pub static scrubberTexturedBackgroundColor: Lazy<Color> =
60    Lazy::new(|| Color::from_rgba_tuple((211, 218, 227, 255)));
61pub static windowFrameTextColor: Lazy<Color> =
62    Lazy::new(|| Color::from_rgba_tuple((195, 199, 209, 255)));
63pub static underPageBackgroundColor: Lazy<Color> =
64    Lazy::new(|| Color::from_rgba_tuple((22, 25, 37, 255)));
65pub static findHighlightColor: Lazy<Color> =
66    Lazy::new(|| Color::from_rgba_tuple((255, 106, 0, 255)));
67pub static highlightColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
68pub static shadowColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
69pub static systemBrownColor: Lazy<Color> =
70    Lazy::new(|| Color::from_rgba_tuple((155, 123, 85, 255)));
71pub static systemFuchsiaColor: Lazy<Color> =
72    Lazy::new(|| Color::from_rgba_tuple((197, 14, 210, 255)));
73pub static systemGrayColor: Lazy<Color> =
74    Lazy::new(|| Color::from_rgba_tuple((133, 133, 139, 255)));
75pub static systemGreenColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((48, 211, 58, 255)));
76pub static systemIndigoColor: Lazy<Color> =
77    Lazy::new(|| Color::from_rgba_tuple((74, 64, 223, 255)));
78pub static systemOrangeColor: Lazy<Color> =
79    Lazy::new(|| Color::from_rgba_tuple((252, 141, 13, 255)));
80pub static systemPinkColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((251, 25, 76, 255)));
81pub static systemPurpleColor: Lazy<Color> =
82    Lazy::new(|| Color::from_rgba_tuple((157, 51, 213, 255)));
83pub static systemRedColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((251, 43, 44, 255)));
84pub static systemTealColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((76, 187, 242, 255)));
85pub static systemYellowColor: Lazy<Color> =
86    Lazy::new(|| Color::from_rgba_tuple((254, 207, 14, 255)));
87pub static systemBlueColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((16, 106, 254, 255)));
88pub static systemCyanColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((90, 200, 245, 255)));