-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColors.h
More file actions
54 lines (39 loc) · 1.78 KB
/
Colors.h
File metadata and controls
54 lines (39 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef _COLORS_H_
#define _COLORS_H_
// Dark Theme Colors (32-bit RGBA format)
// Background Color
#define DARK_BACKGROUND_COLOR 0xFF1A1A1A // Charcoal or Dark Gray
// Text Colors
#define DARK_TEXT_COLOR 0xFFFFFFFF // White or Light Gray
// Accent Colors
#define ACCENT_COLOR_1 0xFF4287F5 // Bright Blue
#define ACCENT_COLOR_2 0xFFFF6F61 // Fiery Red
#define ACCENT_COLOR_3 0xFF99E265 // Neon Green
// Cursor Color
#define CURSOR_COLOR 0xFFFFFF00 // Bright Yellow
// Outline and Borders
#define BORDER_COLOR 0xFFC0C0C0 // Light Gray
// Selection Highlight
#define SELECTION_COLOR 0xFFFFD700 // Bright Gold
// Error Messages
#define ERROR_COLOR 0xFFFF0000 // Red
// Links and Interactive Elements
#define LINK_COLOR 0xFF00FFFF // Cyan
// Background Color for Title Area
#define TITLE_BACKGROUND_COLOR 0xFF2E2E2E // Dark Gray
// Text Color for Title Area
#define TITLE_TEXT_COLOR 0xFFFFFFFF // White or Light Gray
// Selected (Active) Slider and Thumb Colors
#define SELECTED_TEXT_COLOR 0xFF000000 // Black (or another contrasting color)
#define SELECTED_CURSOR_COLOR 0xFF808080 // Light Gray (adjust as needed)
#define SELECTED_SLIDER_COLOR 0xFF007ACC // Dark Blue (adjust as needed)
#define SELECTED_THUMB_COLOR 0xFF1A1A1A // Charcoal or Dark Gray
// Unselected (Inactive) Slider and Thumb Colors
#define UNSELECTED_TEXT_COLOR 0xFF808080 // Light Gray (adjust as needed)
#define UNSELECTED_CURSOR_COLOR 0xFF000000 // Black (or another contrasting color)
#define UNSELECTED_SLIDER_COLOR 0xFF808080 // Gray (adjust as needed)
#define UNSELECTED_THUMB_COLOR 0xFFA0A0A0 // Light Gray (adjust as needed)
// Transparency
#define TRANSPARENT_COLOR 0x00000000 // Fully Transparent
#define BG_TRANSPARENT_COLOR 0x773F3F3F // Transparent Dark Gray
#endif