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