fltk_theme/colors/aqua/
light.rs

1#![allow(non_upper_case_globals)]
2
3use fltk::enums::Color;
4use fltk::utils::oncelock::Lazy;
5
6pub static backgroundColor2: Lazy<Color> =
7    Lazy::new(|| Color::from_rgba_tuple((255, 255, 255, 255)));
8pub static windowBackgroundColor: Lazy<Color> =
9    Lazy::new(|| Color::from_rgba_tuple((231, 231, 231, 255)));
10pub static labelColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 216)));
11pub static controlBackgroundColor: Lazy<Color> =
12    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
13pub static secondaryLabelColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 127)));
14pub static tertiaryLabelColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 66)));
15pub static quaternaryLabelColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 25)));
16pub static textColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
17pub static placeholderTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 63)));
18pub static selectedTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
19pub static textBackgroundColor: Lazy<Color> =
20    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
21pub static selectedTextBackgroundColor: Lazy<Color> =
22    Lazy::new(|| Color::from_rgba_tuple((164, 204, 254, 255)));
23pub static keyboardFocusIndicatorColor: Lazy<Color> =
24    Lazy::new(|| Color::from_rgba_tuple((7, 75, 240, 63)));
25pub static unemphasizedSelectedTextColor: Lazy<Color> =
26    Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
27pub static unemphasizedSelectedTextBackgroundColor: Lazy<Color> =
28    Lazy::new(|| Color::from_rgba_tuple((211, 211, 211, 255)));
29pub static linkColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((8, 79, 209, 255)));
30pub static separatorColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 25)));
31pub static selectedContentBackgroundColor: Lazy<Color> =
32    Lazy::new(|| Color::from_rgba_tuple((7, 73, 217, 255)));
33pub static unemphasizedSelectedContentBackgroundColor: Lazy<Color> =
34    Lazy::new(|| Color::from_rgba_tuple((211, 211, 211, 255)));
35pub static selectedMenuItemTextColor: Lazy<Color> =
36    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
37pub static gridColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((223, 223, 223, 255)));
38pub static headerTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 216)));
39pub static controlAccentColor: Lazy<Color> =
40    Lazy::new(|| Color::from_rgba_tuple((10, 95, 254, 255)));
41pub static controlColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
42pub static controlTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 216)));
43pub static disabledControlTextColor: Lazy<Color> =
44    Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 63)));
45pub static selectedControlColor: Lazy<Color> =
46    Lazy::new(|| Color::from_rgba_tuple((164, 204, 254, 255)));
47pub static selectedControlTextColor: Lazy<Color> =
48    Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 216)));
49pub static alternateSelectedControlTextColor: Lazy<Color> =
50    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
51pub static scrubberTexturedBackgroundColor: Lazy<Color> =
52    Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
53pub static windowFrameTextColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 216)));
54pub static underPageBackgroundColor: Lazy<Color> =
55    Lazy::new(|| Color::from_rgba_tuple((131, 131, 131, 229)));
56pub static findHighlightColor: Lazy<Color> =
57    Lazy::new(|| Color::from_rgba_tuple((255, 255, 10, 255)));
58pub static highlightColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((255, 254, 254, 255)));
59pub static shadowColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((0, 0, 0, 255)));
60pub static systemBrownColor: Lazy<Color> =
61    Lazy::new(|| Color::from_rgba_tuple((144, 113, 75, 255)));
62pub static systemGrayColor: Lazy<Color> =
63    Lazy::new(|| Color::from_rgba_tuple((123, 123, 128, 255)));
64pub static systemGreenColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((40, 199, 50, 255)));
65pub static systemIndigoColor: Lazy<Color> =
66    Lazy::new(|| Color::from_rgba_tuple((69, 59, 204, 255)));
67pub static systemOrangeColor: Lazy<Color> =
68    Lazy::new(|| Color::from_rgba_tuple((252, 129, 8, 255)));
69pub static systemPinkColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((251, 12, 67, 255)));
70pub static systemPurpleColor: Lazy<Color> =
71    Lazy::new(|| Color::from_rgba_tuple((157, 51, 213, 255)));
72pub static systemRedColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((251, 32, 37, 255)));
73pub static systemTealColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((71, 175, 235, 255)));
74pub static systemYellowColor: Lazy<Color> =
75    Lazy::new(|| Color::from_rgba_tuple((253, 194, 9, 255)));
76pub static systemBlueColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((10, 95, 254, 255)));
77pub static systemCyanColor: Lazy<Color> = Lazy::new(|| Color::from_rgba_tuple((85, 190, 240, 255)));