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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//! UI Styles - Sizing Constants and Layout Helpers
//!
//! This module provides sizing constants and layout helpers.
//! Core spacing, rounding, and button sizing are now in `DESIGN_TOKENS`.
//!
//! # Architecture
//!
//! ```text
//! styles/
//! ├── sizing.rs - Fixed desktop sizing constants
//! ├── typography.rs - Font sizes
//! └── icons.rs - Icon sizes
//!
//! tokens/
//! └── mod.rs - DESIGN_TOKENS (spacing, sizing, rounding from RON)
//! ```
//!
//! # Usage
//!
//! ```rust,ignore
//! use crate::tokens::DESIGN_TOKENS;
//! use crate::styles::{sizing, typography};
//!
//! // Spacing (from DESIGN_TOKENS)
//! let gap = DESIGN_TOKENS.spacing.panel_gap;
//! let padding = DESIGN_TOKENS.spacing.lg;
//!
//! // Sizing (fixed desktop constants)
//! let toolbar_height = sizing::toolbar::TOP_HEIGHT;
//! let btn_size = DESIGN_TOKENS.sizing.button_md;
//!
//! // Rounding (from DESIGN_TOKENS)
//! let corner_radius = DESIGN_TOKENS.rounding.button;
//!
//! // Typography
//! let font_size = typography::MD;
//!
//! // Margin helpers
//! let margin = styles::margin::same(DESIGN_TOKENS.spacing.md);
//! ```
//!
//! # Design Philosophy
//!
//! - **Single source of truth**: DESIGN_TOKENS loaded from RON files
//! - **Semantic naming**: Use `DESIGN_TOKENS.rounding.button` not magic numbers
//! - **IDE-friendly**: Autocomplete shows available options
pub
// =============================================================================
// Margin Helpers for egui Compatibility
// =============================================================================
/// Helper functions for creating [`egui::Margin`] from `f32` values.
///
/// egui 0.33+ uses `i8` for `Margin` fields. These helpers handle the
/// `f32 -> i8` cast so callers can use design token values directly.
///
/// # Example
///
/// ```rust,ignore
/// use egui_charts::styles::margin;
/// use egui_charts::tokens::DESIGN_TOKENS;
///
/// let m = margin::same(DESIGN_TOKENS.spacing.md);
/// let m2 = margin::symmetric(DESIGN_TOKENS.spacing.lg, DESIGN_TOKENS.spacing.sm);
/// ```
// =============================================================================
// Stroke Helpers
// =============================================================================
/// Common stroke width constants (legacy -- prefer `DESIGN_TOKENS.stroke.*`).