aetna-core 0.3.1

Aetna — backend-agnostic UI library core
Documentation
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
//! Runtime color palette — the swappable rgba backing for color tokens.
//!
//! Tokens (e.g. [`crate::tokens::CARD`]) are [`Color`] values carrying
//! both a fallback rgba and a `token: Some("card")` name. The renderer
//! consults the active [`crate::Theme`]'s palette at paint time, looking
//! up that name to pick the rgba for the currently-active palette. Apps
//! swap palettes at runtime by returning a different [`crate::Theme`] from
//! [`crate::event::App::theme`] each frame.
//!
//! Direct token references swap perfectly across palettes.
//! [`Color::with_alpha`] is alpha-only, so it keeps the token name and
//! resolves cleanly (the user's alpha override survives). The rgb-
//! modifying ops [`Color::darken`]/[`Color::lighten`]/[`Color::mix`]
//! strip the token name — once you've derived rgb from a token, swapping
//! the palette would silently discard the derivation, so derived colors
//! opt out of resolution and render exactly as computed. State animations
//! (hover lighten, press darken, focus mix) all flow through this path.
//!
//! Consequence: a derived color computed against the dark palette renders
//! with its dark-derived rgb even when the active palette is light.
//! `theme.rs:apply_role_material` is the one library site that runs an
//! rgb op against a token (`MUTED.darken(0.08)` for the Sunken role);
//! a tighter fix later is to add an input/container token to `Palette` so the
//! role can reference a resolvable name. State animations don't need this
//! — they want the per-frame derivation to win, not the palette default.
//!
//! The core vocabulary is intentionally close to shadcn/ui: background /
//! foreground pairs for surfaces and actions, plus border, input, ring,
//! and semantic status roles. Link, scrollbar, overlay, and selection
//! tokens are component/domain extensions.

use crate::tree::Color;

/// Runtime backing for the design-token color vocabulary.
///
/// One field per theme-variant token.
#[derive(Clone, Debug)]
pub struct Palette {
    // Core shadcn-shaped semantic colors.
    pub background: Color,
    pub foreground: Color,

    pub card: Color,
    pub card_foreground: Color,

    pub popover: Color,
    pub popover_foreground: Color,

    pub primary: Color,
    pub primary_foreground: Color,

    pub secondary: Color,
    pub secondary_foreground: Color,

    pub muted: Color,
    pub muted_foreground: Color,

    pub accent: Color,
    pub accent_foreground: Color,

    pub destructive: Color,
    pub destructive_foreground: Color,

    pub border: Color,
    pub input: Color,
    pub ring: Color,

    pub success: Color,
    pub success_foreground: Color,
    pub warning: Color,
    pub warning_foreground: Color,
    pub info: Color,
    pub info_foreground: Color,

    // Extensions.
    pub overlay_scrim: Color,
    pub link_foreground: Color,

    pub scrollbar_thumb_fill: Color,
    pub scrollbar_thumb_fill_active: Color,

    pub selection_bg: Color,
    pub selection_bg_unfocused: Color,
}

impl Palette {
    /// Aetna's default dark palette, copied from shadcn/ui's zinc dark
    /// theme scaffold. These rgba values also serve as the compile-time
    /// fallback baked into the constants in [`crate::tokens`].
    pub const fn aetna_dark() -> Self {
        Self::shadcn_zinc_dark()
    }

    /// Aetna's default light palette, copied from shadcn/ui's zinc
    /// light theme scaffold.
    pub const fn aetna_light() -> Self {
        Self::shadcn_zinc_light()
    }

    /// shadcn/ui zinc dark theme scaffold, converted from the upstream
    /// HSL CSS variables to 8-bit sRGB. Status and component-extension
    /// tokens are Aetna additions layered on top of the shadcn core.
    pub const fn shadcn_zinc_dark() -> Self {
        Self {
            background: Color::token("background", 9, 9, 11, 255),
            foreground: Color::token("foreground", 250, 250, 250, 255),

            card: Color::token("card", 9, 9, 11, 255),
            card_foreground: Color::token("card-foreground", 250, 250, 250, 255),

            popover: Color::token("popover", 9, 9, 11, 255),
            popover_foreground: Color::token("popover-foreground", 250, 250, 250, 255),

            primary: Color::token("primary", 250, 250, 250, 255),
            primary_foreground: Color::token("primary-foreground", 24, 24, 27, 255),

            secondary: Color::token("secondary", 39, 39, 42, 255),
            secondary_foreground: Color::token("secondary-foreground", 250, 250, 250, 255),

            muted: Color::token("muted", 39, 39, 42, 255),
            muted_foreground: Color::token("muted-foreground", 161, 161, 170, 255),

            accent: Color::token("accent", 39, 39, 42, 255),
            accent_foreground: Color::token("accent-foreground", 250, 250, 250, 255),

            destructive: Color::token("destructive", 127, 29, 29, 255),
            destructive_foreground: Color::token("destructive-foreground", 250, 250, 250, 255),

            border: Color::token("border", 39, 39, 42, 255),
            input: Color::token("input", 39, 39, 42, 255),
            ring: Color::token("ring", 212, 212, 216, 255),

            success: Color::token("success", 16, 185, 129, 255),
            success_foreground: Color::token("success-foreground", 5, 46, 22, 255),
            warning: Color::token("warning", 245, 158, 11, 255),
            warning_foreground: Color::token("warning-foreground", 69, 26, 3, 255),
            info: Color::token("info", 59, 130, 246, 255),
            info_foreground: Color::token("info-foreground", 239, 246, 255, 255),

            overlay_scrim: Color::token("overlay-scrim", 0, 0, 0, 204),
            link_foreground: Color::token("link-foreground", 96, 165, 250, 255),

            scrollbar_thumb_fill: Color::token("scrollbar-thumb", 113, 113, 122, 120),
            scrollbar_thumb_fill_active: Color::token("scrollbar-thumb-active", 161, 161, 170, 220),

            selection_bg: Color::token("selection-bg", 96, 165, 250, 96),
            selection_bg_unfocused: Color::token("selection-bg-unfocused", 113, 113, 122, 64),
        }
    }

    /// shadcn/ui zinc light theme scaffold, converted from the upstream
    /// HSL CSS variables to 8-bit sRGB. Status and component-extension
    /// tokens are Aetna additions layered on top of the shadcn core.
    pub const fn shadcn_zinc_light() -> Self {
        Self {
            background: Color::token("background", 255, 255, 255, 255),
            foreground: Color::token("foreground", 9, 9, 11, 255),

            card: Color::token("card", 255, 255, 255, 255),
            card_foreground: Color::token("card-foreground", 9, 9, 11, 255),

            popover: Color::token("popover", 255, 255, 255, 255),
            popover_foreground: Color::token("popover-foreground", 9, 9, 11, 255),

            primary: Color::token("primary", 24, 24, 27, 255),
            primary_foreground: Color::token("primary-foreground", 250, 250, 250, 255),

            secondary: Color::token("secondary", 244, 244, 245, 255),
            secondary_foreground: Color::token("secondary-foreground", 24, 24, 27, 255),

            muted: Color::token("muted", 244, 244, 245, 255),
            muted_foreground: Color::token("muted-foreground", 113, 113, 122, 255),

            accent: Color::token("accent", 244, 244, 245, 255),
            accent_foreground: Color::token("accent-foreground", 24, 24, 27, 255),

            destructive: Color::token("destructive", 239, 68, 68, 255),
            destructive_foreground: Color::token("destructive-foreground", 250, 250, 250, 255),

            border: Color::token("border", 228, 228, 231, 255),
            input: Color::token("input", 228, 228, 231, 255),
            ring: Color::token("ring", 24, 24, 27, 255),

            success: Color::token("success", 16, 185, 129, 255),
            success_foreground: Color::token("success-foreground", 5, 46, 22, 255),
            warning: Color::token("warning", 245, 158, 11, 255),
            warning_foreground: Color::token("warning-foreground", 69, 26, 3, 255),
            info: Color::token("info", 37, 99, 235, 255),
            info_foreground: Color::token("info-foreground", 239, 246, 255, 255),

            overlay_scrim: Color::token("overlay-scrim", 0, 0, 0, 128),
            link_foreground: Color::token("link-foreground", 37, 99, 235, 255),

            scrollbar_thumb_fill: Color::token("scrollbar-thumb", 113, 113, 122, 90),
            scrollbar_thumb_fill_active: Color::token("scrollbar-thumb-active", 82, 82, 91, 220),

            selection_bg: Color::token("selection-bg", 37, 99, 235, 64),
            selection_bg_unfocused: Color::token("selection-bg-unfocused", 113, 113, 122, 56),
        }
    }

    /// shadcn/ui neutral dark theme scaffold, converted from the
    /// upstream HSL CSS variables to 8-bit sRGB.
    pub const fn shadcn_neutral_dark() -> Self {
        let mut palette = Self::shadcn_zinc_dark();
        palette.background = Color::token("background", 10, 10, 10, 255);
        palette.foreground = Color::token("foreground", 250, 250, 250, 255);
        palette.card = Color::token("card", 10, 10, 10, 255);
        palette.card_foreground = Color::token("card-foreground", 250, 250, 250, 255);
        palette.popover = Color::token("popover", 10, 10, 10, 255);
        palette.popover_foreground = Color::token("popover-foreground", 250, 250, 250, 255);
        palette.primary = Color::token("primary", 250, 250, 250, 255);
        palette.primary_foreground = Color::token("primary-foreground", 23, 23, 23, 255);
        palette.secondary = Color::token("secondary", 38, 38, 38, 255);
        palette.secondary_foreground = Color::token("secondary-foreground", 250, 250, 250, 255);
        palette.muted = Color::token("muted", 38, 38, 38, 255);
        palette.muted_foreground = Color::token("muted-foreground", 163, 163, 163, 255);
        palette.accent = Color::token("accent", 38, 38, 38, 255);
        palette.accent_foreground = Color::token("accent-foreground", 250, 250, 250, 255);
        palette.border = Color::token("border", 38, 38, 38, 255);
        palette.input = Color::token("input", 38, 38, 38, 255);
        palette.ring = Color::token("ring", 212, 212, 212, 255);
        palette.scrollbar_thumb_fill = Color::token("scrollbar-thumb", 115, 115, 115, 120);
        palette.scrollbar_thumb_fill_active =
            Color::token("scrollbar-thumb-active", 163, 163, 163, 220);
        palette.selection_bg_unfocused = Color::token("selection-bg-unfocused", 115, 115, 115, 64);
        palette
    }

    /// shadcn/ui neutral light theme scaffold, converted from the
    /// upstream HSL CSS variables to 8-bit sRGB.
    pub const fn shadcn_neutral_light() -> Self {
        let mut palette = Self::shadcn_zinc_light();
        palette.background = Color::token("background", 255, 255, 255, 255);
        palette.foreground = Color::token("foreground", 10, 10, 10, 255);
        palette.card = Color::token("card", 255, 255, 255, 255);
        palette.card_foreground = Color::token("card-foreground", 10, 10, 10, 255);
        palette.popover = Color::token("popover", 255, 255, 255, 255);
        palette.popover_foreground = Color::token("popover-foreground", 10, 10, 10, 255);
        palette.primary = Color::token("primary", 23, 23, 23, 255);
        palette.primary_foreground = Color::token("primary-foreground", 250, 250, 250, 255);
        palette.secondary = Color::token("secondary", 245, 245, 245, 255);
        palette.secondary_foreground = Color::token("secondary-foreground", 23, 23, 23, 255);
        palette.muted = Color::token("muted", 245, 245, 245, 255);
        palette.muted_foreground = Color::token("muted-foreground", 115, 115, 115, 255);
        palette.accent = Color::token("accent", 245, 245, 245, 255);
        palette.accent_foreground = Color::token("accent-foreground", 23, 23, 23, 255);
        palette.border = Color::token("border", 229, 229, 229, 255);
        palette.input = Color::token("input", 229, 229, 229, 255);
        palette.ring = Color::token("ring", 10, 10, 10, 255);
        palette.scrollbar_thumb_fill = Color::token("scrollbar-thumb", 115, 115, 115, 90);
        palette.scrollbar_thumb_fill_active =
            Color::token("scrollbar-thumb-active", 82, 82, 82, 220);
        palette.selection_bg_unfocused = Color::token("selection-bg-unfocused", 115, 115, 115, 56);
        palette
    }

    /// Return a neutral-family palette for the requested luminance mode.
    pub const fn shadcn_neutral(is_dark: bool) -> Self {
        if is_dark {
            Self::shadcn_neutral_dark()
        } else {
            Self::shadcn_neutral_light()
        }
    }

    /// Radix Colors-inspired slate + blue dark palette. The neutral
    /// surfaces come from Radix `slate`; the action, link, focus, and
    /// selected/current treatments come from Radix `blue`. This keeps
    /// the original Aetna black/blue feel, but uses a complete public
    /// scale rather than hand-picked ad hoc values.
    pub const fn radix_slate_blue_dark() -> Self {
        Self {
            background: Color::token("background", 17, 17, 19, 255),
            foreground: Color::token("foreground", 237, 238, 240, 255),

            card: Color::token("card", 24, 25, 27, 255),
            card_foreground: Color::token("card-foreground", 237, 238, 240, 255),

            popover: Color::token("popover", 24, 25, 27, 255),
            popover_foreground: Color::token("popover-foreground", 237, 238, 240, 255),

            primary: Color::token("primary", 0, 144, 255, 255),
            primary_foreground: Color::token("primary-foreground", 255, 255, 255, 255),

            secondary: Color::token("secondary", 33, 34, 37, 255),
            secondary_foreground: Color::token("secondary-foreground", 237, 238, 240, 255),

            muted: Color::token("muted", 33, 34, 37, 255),
            muted_foreground: Color::token("muted-foreground", 176, 180, 186, 255),

            accent: Color::token("accent", 13, 40, 71, 255),
            accent_foreground: Color::token("accent-foreground", 112, 184, 255, 255),

            destructive: Color::token("destructive", 229, 72, 77, 255),
            destructive_foreground: Color::token("destructive-foreground", 255, 255, 255, 255),

            border: Color::token("border", 54, 58, 63, 255),
            input: Color::token("input", 54, 58, 63, 255),
            ring: Color::token("ring", 0, 144, 255, 255),

            success: Color::token("success", 48, 164, 108, 255),
            success_foreground: Color::token("success-foreground", 14, 21, 18, 255),
            warning: Color::token("warning", 255, 197, 61, 255),
            warning_foreground: Color::token("warning-foreground", 79, 52, 34, 255),
            info: Color::token("info", 0, 144, 255, 255),
            info_foreground: Color::token("info-foreground", 255, 255, 255, 255),

            overlay_scrim: Color::token("overlay-scrim", 0, 0, 0, 204),
            link_foreground: Color::token("link-foreground", 112, 184, 255, 255),

            scrollbar_thumb_fill: Color::token("scrollbar-thumb", 105, 110, 119, 120),
            scrollbar_thumb_fill_active: Color::token("scrollbar-thumb-active", 176, 180, 186, 220),

            selection_bg: Color::token("selection-bg", 0, 144, 255, 96),
            selection_bg_unfocused: Color::token("selection-bg-unfocused", 105, 110, 119, 64),
        }
    }

    /// Radix Colors-inspired slate + blue light palette.
    pub const fn radix_slate_blue_light() -> Self {
        Self {
            background: Color::token("background", 252, 252, 253, 255),
            foreground: Color::token("foreground", 28, 32, 36, 255),

            card: Color::token("card", 255, 255, 255, 255),
            card_foreground: Color::token("card-foreground", 28, 32, 36, 255),

            popover: Color::token("popover", 255, 255, 255, 255),
            popover_foreground: Color::token("popover-foreground", 28, 32, 36, 255),

            primary: Color::token("primary", 0, 144, 255, 255),
            primary_foreground: Color::token("primary-foreground", 255, 255, 255, 255),

            secondary: Color::token("secondary", 240, 240, 243, 255),
            secondary_foreground: Color::token("secondary-foreground", 28, 32, 36, 255),

            muted: Color::token("muted", 240, 240, 243, 255),
            muted_foreground: Color::token("muted-foreground", 96, 100, 108, 255),

            accent: Color::token("accent", 230, 244, 254, 255),
            accent_foreground: Color::token("accent-foreground", 13, 116, 206, 255),

            destructive: Color::token("destructive", 229, 72, 77, 255),
            destructive_foreground: Color::token("destructive-foreground", 255, 255, 255, 255),

            border: Color::token("border", 217, 217, 224, 255),
            input: Color::token("input", 205, 206, 214, 255),
            ring: Color::token("ring", 0, 144, 255, 255),

            success: Color::token("success", 48, 164, 108, 255),
            success_foreground: Color::token("success-foreground", 25, 59, 45, 255),
            warning: Color::token("warning", 255, 197, 61, 255),
            warning_foreground: Color::token("warning-foreground", 79, 52, 34, 255),
            info: Color::token("info", 0, 144, 255, 255),
            info_foreground: Color::token("info-foreground", 255, 255, 255, 255),

            overlay_scrim: Color::token("overlay-scrim", 0, 0, 0, 128),
            link_foreground: Color::token("link-foreground", 13, 116, 206, 255),

            scrollbar_thumb_fill: Color::token("scrollbar-thumb", 139, 141, 152, 90),
            scrollbar_thumb_fill_active: Color::token("scrollbar-thumb-active", 96, 100, 108, 220),

            selection_bg: Color::token("selection-bg", 0, 144, 255, 64),
            selection_bg_unfocused: Color::token("selection-bg-unfocused", 139, 141, 152, 56),
        }
    }

    /// Return a Radix slate + blue palette for the requested luminance mode.
    pub const fn radix_slate_blue(is_dark: bool) -> Self {
        if is_dark {
            Self::radix_slate_blue_dark()
        } else {
            Self::radix_slate_blue_light()
        }
    }

    /// Replace `c`'s rgb with this palette's value for its token name,
    /// keeping the token name and the input alpha. Colors with no token
    /// name pass through unchanged — that includes raw `Color::rgba`
    /// values *and* the output of rgb-modifying ops (which strip the
    /// token name; see [`Color`] module docs). Colors whose token isn't
    /// a palette member (theme-invariant tokens like `text-on-solid-dark`,
    /// unknown tokens) also pass through unchanged.
    ///
    /// Alpha is taken from the input so [`Color::with_alpha`] overrides
    /// survive resolution.
    pub fn resolve(&self, c: Color) -> Color {
        match c.token.and_then(|name| self.lookup(name)) {
            Some(swap) => Color {
                r: swap.r,
                g: swap.g,
                b: swap.b,
                a: c.a,
                token: c.token,
            },
            None => c,
        }
    }

    /// Resolve a token name to its rgba in this palette. Returns `None`
    /// for theme-invariant tokens (the renderer falls back to the
    /// `Color`'s baked rgba) and for unknown names.
    pub fn lookup(&self, token: &str) -> Option<Color> {
        Some(match token {
            "background" => self.background,
            "foreground" => self.foreground,
            "card" => self.card,
            "card-foreground" => self.card_foreground,
            "popover" => self.popover,
            "popover-foreground" => self.popover_foreground,
            "primary" => self.primary,
            "primary-foreground" => self.primary_foreground,
            "secondary" => self.secondary,
            "secondary-foreground" => self.secondary_foreground,
            "muted" => self.muted,
            "muted-foreground" => self.muted_foreground,
            "accent" => self.accent,
            "accent-foreground" => self.accent_foreground,
            "destructive" => self.destructive,
            "destructive-foreground" => self.destructive_foreground,
            "border" => self.border,
            "input" => self.input,
            "ring" => self.ring,
            "success" => self.success,
            "success-foreground" => self.success_foreground,
            "warning" => self.warning,
            "warning-foreground" => self.warning_foreground,
            "info" => self.info,
            "info-foreground" => self.info_foreground,
            "overlay-scrim" => self.overlay_scrim,
            "link-foreground" => self.link_foreground,
            "scrollbar-thumb" => self.scrollbar_thumb_fill,
            "scrollbar-thumb-active" => self.scrollbar_thumb_fill_active,
            "selection-bg" => self.selection_bg,
            "selection-bg-unfocused" => self.selection_bg_unfocused,
            _ => return None,
        })
    }
}

impl Default for Palette {
    fn default() -> Self {
        Self::aetna_dark()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::tokens;

    #[test]
    fn dark_lookup_round_trips() {
        let p = Palette::aetna_dark();
        let bg = p.lookup("background").expect("background present");
        assert_eq!(bg, p.background);
    }

    #[test]
    fn aetna_dark_matches_token_fallbacks() {
        let palette = Palette::aetna_dark();
        for token in [
            tokens::BACKGROUND,
            tokens::FOREGROUND,
            tokens::CARD,
            tokens::CARD_FOREGROUND,
            tokens::POPOVER,
            tokens::POPOVER_FOREGROUND,
            tokens::PRIMARY,
            tokens::PRIMARY_FOREGROUND,
            tokens::SECONDARY,
            tokens::SECONDARY_FOREGROUND,
            tokens::MUTED,
            tokens::MUTED_FOREGROUND,
            tokens::ACCENT,
            tokens::ACCENT_FOREGROUND,
            tokens::DESTRUCTIVE,
            tokens::DESTRUCTIVE_FOREGROUND,
            tokens::BORDER,
            tokens::INPUT,
            tokens::RING,
            tokens::SUCCESS,
            tokens::SUCCESS_FOREGROUND,
            tokens::WARNING,
            tokens::WARNING_FOREGROUND,
            tokens::INFO,
            tokens::INFO_FOREGROUND,
            tokens::OVERLAY_SCRIM,
            tokens::LINK_FOREGROUND,
            tokens::SCROLLBAR_THUMB_FILL,
            tokens::SCROLLBAR_THUMB_FILL_ACTIVE,
            tokens::SELECTION_BG,
            tokens::SELECTION_BG_UNFOCUSED,
        ] {
            assert_eq!(palette.resolve(token), token);
        }
    }

    #[test]
    fn lookup_unknown_returns_none() {
        let p = Palette::aetna_dark();
        assert!(p.lookup("not-a-token").is_none());
    }

    #[test]
    fn removed_legacy_tokens_not_in_palette() {
        let p = Palette::aetna_dark();
        assert!(p.lookup("bg-app").is_none());
        assert!(p.lookup("bg-card").is_none());
        assert!(p.lookup("bg-muted").is_none());
        assert!(p.lookup("text-on-solid-dark").is_none());
        assert!(p.lookup("text-on-solid-light").is_none());
    }

    #[test]
    fn resolve_passes_through_unrecognized() {
        let p = Palette::aetna_dark();
        let raw = Color::rgba(1, 2, 3, 4);
        assert_eq!(p.resolve(raw), raw);
        let invariant = Color::token("text-on-solid-dark", 8, 16, 25, 255);
        assert_eq!(p.resolve(invariant), invariant);
    }

    #[test]
    fn resolve_preserves_alpha_override() {
        let p = Palette::aetna_dark();
        let translucent = p.card.with_alpha(120);
        let resolved = p.resolve(translucent);
        // rgb tracks the palette's card, alpha tracks the override.
        assert_eq!(
            (resolved.r, resolved.g, resolved.b),
            (p.card.r, p.card.g, p.card.b)
        );
        assert_eq!(resolved.a, 120);
        assert_eq!(resolved.token, Some("card"));
    }

    #[test]
    fn aetna_light_differs_from_aetna_dark() {
        let dark = Palette::aetna_dark();
        let light = Palette::aetna_light();
        // background is one of the tokens that visibly inverts.
        assert_ne!(
            (dark.background.r, dark.background.g, dark.background.b),
            (light.background.r, light.background.g, light.background.b),
        );
        // Text foreground also inverts.
        assert_ne!(
            (dark.foreground.r, dark.foreground.g, dark.foreground.b),
            (light.foreground.r, light.foreground.g, light.foreground.b),
        );
        // Token names match — same vocabulary, different rgb.
        assert_eq!(dark.background.token, light.background.token);
    }

    #[test]
    fn resolve_against_light_swaps_rgb() {
        let light = Palette::aetna_light();
        // A token-tagged color authored against dark values resolves to
        // the light palette's rgb.
        let dark_card = Color::token("card", 23, 26, 33, 255);
        let resolved = light.resolve(dark_card);
        assert_eq!(
            (resolved.r, resolved.g, resolved.b),
            (light.card.r, light.card.g, light.card.b),
        );
    }

    #[test]
    fn rgb_ops_strip_token_so_resolve_passes_through() {
        // State animations (hover lighten, press darken) build colors
        // via .darken/.lighten/.mix on token-tagged base colors. Those
        // ops strip the token, so resolve passes them through unchanged
        // and the per-frame derivation wins — which is what we want.
        let p = Palette::aetna_dark();
        let darkened = p.muted.darken(0.5);
        assert_eq!(darkened.token, None);
        let resolved = p.resolve(darkened);
        assert_eq!(resolved, darkened);
    }
}