fltk_theme/colors/aqua/
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((0, 0, 0, 255)));
7pub static windowBackgroundColor: Lazy<Color> =
8    Lazy::new(|| Color::from_rgba_tuple((37, 37, 37, 255)));
9pub static labelColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 216)));
10pub static controlBackgroundColor: Lazy<Color> =
11    Lazy::new(|| Color::from_rgba_tuple((22, 22, 22, 255)));
12pub static secondaryLabelColor: Lazy<Color> =
13    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 140)));
14pub static tertiaryLabelColor: Lazy<Color> =
15    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 63)));
16pub static quaternaryLabelColor: Lazy<Color> =
17    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 25)));
18pub static textColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
19pub static placeholderTextColor: Lazy<Color> =
20    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 63)));
21pub static selectedTextColor: Lazy<Color> =
22    Lazy::new(|| Color::from_rgba_tuple((255, 255, 255, 255)));
23pub static textBackgroundColor: Lazy<Color> =
24    Lazy::new(|| Color::from_rgba_tuple((22, 22, 22, 255)));
25pub static selectedTextBackgroundColor: Lazy<Color> =
26    Lazy::new(|| Color::from_rgba_tuple((48, 79, 120, 255)));
27pub static keyboardFocusIndicatorColor: Lazy<Color> =
28    Lazy::new(|| Color::from_rgba_tuple((27, 149, 254, 76)));
29pub static unemphasizedSelectedTextColor: Lazy<Color> =
30    Lazy::new(|| Color::from_rgba_tuple((255, 255, 255, 255)));
31pub static unemphasizedSelectedTextBackgroundColor: Lazy<Color> =
32    Lazy::new(|| Color::from_rgba_tuple((54, 54, 54, 255)));
33pub static linkColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((52, 134, 254, 255)));
34pub static separatorColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 25)));
35pub static selectedContentBackgroundColor: Lazy<Color> =
36    Lazy::new(|| Color::from_rgba_tuple((5, 63, 197, 255)));
37pub static unemphasizedSelectedContentBackgroundColor: Lazy<Color> =
38    Lazy::new(|| Color::from_rgba_tuple((54, 54, 54, 255)));
39pub static selectedMenuItemTextColor: Lazy<Color> =
40    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
41pub static gridColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((20, 20, 20, 255)));
42pub static headerTextColor: Lazy<Color> =
43    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
44pub static controlAccentColor: Lazy<Color> =
45    Lazy::new(|| Color::from_rgba_tuple((10, 95, 254, 255)));
46pub static controlColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 63)));
47pub static controlTextColor: Lazy<Color> =
48    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 216)));
49pub static disabledControlTextColor: Lazy<Color> =
50    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 63)));
51pub static selectedControlColor: Lazy<Color> =
52    Lazy::new(|| Color::from_rgba_tuple((48, 79, 120, 255)));
53pub static selectedControlTextColor: Lazy<Color> =
54    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 216)));
55pub static alternateSelectedControlTextColor: Lazy<Color> =
56    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
57pub static scrubberTexturedBackgroundColor: Lazy<Color> =
58    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
59pub static windowFrameTextColor: Lazy<Color> =
60    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 216)));
61pub static underPageBackgroundColor: Lazy<Color> =
62    Lazy::new(|| Color::from_rgba_tuple((29, 29, 29, 255)));
63pub static findHighlightColor: Lazy<Color> =
64    Lazy::new(|| Color::from_rgba_tuple((255, 255, 10, 255)));
65pub static highlightColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((164, 164, 164, 255)));
66pub static shadowColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
67pub static systemBrownColor: Lazy<Color> =
68    Lazy::new(|| Color::from_rgba_tuple((155, 123, 85, 255)));
69pub static systemGrayColor: Lazy<Color> =
70    Lazy::new(|| Color::from_rgba_tuple((133, 133, 139, 255)));
71pub static systemGreenColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((48, 211, 58, 255)));
72pub static systemIndigoColor: Lazy<Color> =
73    Lazy::new(|| Color::from_rgba_tuple((74, 64, 223, 255)));
74pub static systemOrangeColor: Lazy<Color> =
75    Lazy::new(|| Color::from_rgba_tuple((252, 141, 13, 255)));
76pub static systemPinkColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((251, 25, 76, 255)));
77pub static systemPurpleColor: Lazy<Color> =
78    Lazy::new(|| Color::from_rgba_tuple((175, 56, 238, 255)));
79pub static systemRedColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((251, 43, 44, 255)));
80pub static systemTealColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((76, 187, 242, 255)));
81pub static systemYellowColor: Lazy<Color> =
82    Lazy::new(|| Color::from_rgba_tuple((254, 207, 14, 255)));
83pub static systemBlueColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((16, 106, 254, 255)));
84pub static systemCyanColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((90, 200, 245, 255)));