theme/lib.rs
1//! The app theme — two concrete appearances, one token set.
2//!
3//! Colors are precomputed from an oklch-derived neutral scale (perceptually even
4//! lightness steps; the same scale the reference Tailwind theme used) into gpui
5//! [`Hsla`](gpui::Hsla).
6//! **Numbers drive layout, colors are paint**: layout constants live in
7//! `theme/layout.rs` as plain numbers and never depend on which color is painted.
8//!
9//! # Light is designed, not inverted
10//!
11//! Mirroring lightness produces the classic "washed-out inverted" look, for three
12//! reasons this module handles explicitly:
13//!
14//! 1. **Surface order flips meaning.** In dark, the main content panel is the
15//! *darkest* plane and raised surfaces get *lighter*. In light, the content
16//! panel is *white* and the shell/sidebar goes *grey* — chrome recedes by
17//! getting darker, not lighter. Popovers stay white and earn separation from a
18//! border and shadow rather than from lightness.
19//! 2. **Elevation reverses.** On dark, a faint *white* wash means "raised". Its
20//! literal translation — a faint *black* wash on white — means "recessed", so
21//! the composer read as a dent instead of a plate. Light lifts with white plus
22//! a border and shadow ([`Theme::input_bg`], the elevation ladder). Fill
23//! *alphas* carry over unchanged ([`INK_FILL_SCALE`]); only hairlines scale, so
24//! a 1px edge survives a bright surround ([`INK_HAIRLINE_SCALE`]).
25//! 3. **Accents must move down the scale.** The dark palette's 400-level accents
26//! (red/amber, and whatever hue an app sets [`Theme::accent`] to) are chosen
27//! for contrast against near-black; on white they fall to 2–4:1 and fail WCAG
28//! AA. Light mode uses the 600-level siblings at the same hue, which restores
29//! the *contrast ratio* the dark token had.
30//!
31//! Text tones are chosen so each light token lands within ~0.5 of its dark
32//! counterpart's contrast ratio against its own background — the pairing is
33//! verified in `tests/theme.rs`, not eyeballed.
34//!
35//! Installed as a gpui [`Global`](gpui::Global) at boot; read with [`Theme::of`].
36
37pub mod appearance;
38
39mod brand;
40mod color;
41mod paint;
42mod theme;
43
44pub use brand::{BASE_COLORS, Brand, Tint, brand, set_brand};
45
46pub use color::{
47 contrast_ratio, flatten, grey, hsl_to_rgb, lightness, mix, neutral, oklch, oklch_to_srgb,
48 relative_luminance, rgb_to_hsl, tint,
49};
50pub use paint::{
51 INK_FILL_SCALE, INK_HAIRLINE_SCALE, SCRIM_ALPHA_DARK, band, card_selected_bg,
52 card_selected_shadows, current_appearance, glass_selected_bg, glass_selected_shadows, hairline,
53 ink, lock_appearance, scrim, set_current_appearance, surface_shadows, theme_generation,
54 user_bubble_bg, wash,
55};
56pub use theme::{
57 ControlSize, Glass, HighlightKind, Material, MaterialSpec, Metrics, Sizing, SurfaceSpec,
58 SurfaceStyle, SyntaxPalette, TextStyle, Theme, Typeset, base_text_size, set_base_text_size,
59 set_palette,
60};
61
62/// The carrier seam for catalog traits: any type holding a [`Theme`] exposes
63/// it through this one method, and every component group
64/// (`ui::widgets::Scaffolding`, …) extends it, so group methods read
65/// the environment through `self.theme()`.
66pub trait ThemeExt {
67 fn theme(&self) -> &Theme;
68}
69
70impl ThemeExt for Theme {
71 fn theme(&self) -> &Theme {
72 self
73 }
74}
75
76/// Which appearance the app is painting.
77#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
78pub enum Appearance {
79 #[default]
80 Dark,
81 Light,
82}
83
84impl Appearance {
85 pub fn is_dark(self) -> bool {
86 matches!(self, Self::Dark)
87 }
88
89 pub fn is_light(self) -> bool {
90 matches!(self, Self::Light)
91 }
92
93 /// Map a gpui window appearance onto ours (both vibrant variants are just
94 /// the blurred flavour of the same tone).
95 pub fn from_window(appearance: gpui::WindowAppearance) -> Self {
96 use gpui::WindowAppearance::*;
97 match appearance {
98 Light | VibrantLight => Self::Light,
99 Dark | VibrantDark => Self::Dark,
100 }
101 }
102}