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
55
56
57
58
59
//! Shared theme constants for widget rendering
//!
//! Centralizes magic color values and layout constants used across widgets.
use crateColor;
/// Foreground color for disabled widgets — `rgb(100, 100, 100)`
pub const DISABLED_FG: Color = Color ;
/// Background color for disabled widgets — `rgb(50, 50, 50)`
pub const DISABLED_BG: Color = Color ;
/// Foreground color for placeholder text — `rgb(128, 128, 128)`
pub const PLACEHOLDER_FG: Color = Color ;
/// Dark gray for borders, separators, and subtle UI elements — `rgb(80, 80, 80)`
pub const DARK_GRAY: Color = Color ;
/// Light gray for secondary text, labels, and muted content — `rgb(150, 150, 150)`
pub const LIGHT_GRAY: Color = Color ;
/// Subtle gray for descriptions, timestamps, and tertiary text — `rgb(120, 120, 120)`
pub const SUBTLE_GRAY: Color = Color ;
/// Accent color for focused widgets
pub const FOCUS_COLOR: Color = CYAN;
/// Maximum visible items in dropdown overlays
pub const MAX_DROPDOWN_VISIBLE: u16 = 10;