opaline 0.3.0

A token-based theme engine for Rust applications
Documentation
# Opaline

A token-based theme engine for Rust applications.

## Architecture

**Resolution pipeline:** TOML file → `ThemeFile` (serde) → `Resolver` (palette → tokens → styles → gradients) → `Theme`

```
src/
  lib.rs              # Re-exports, crate docs
  color.rs            # OpalineColor { r, g, b } + hex parsing + lerp + From conversions
  style.rs            # OpalineStyle { fg, bg, 9 modifiers } + merge + #[non_exhaustive]
  gradient.rs         # Gradient (multi-stop) + at(t) + generate(n) + try_new()
  error.rs            # OpalineError enum (thiserror)
  schema.rs           # ThemeFile, ThemeMeta, ThemeVariant, StyleDef (serde)
  resolver.rs         # Strict palette → token → style resolution with cycle detection
  loader.rs           # load_from_file(impl AsRef<Path>), load_from_str()
  theme.rs            # Theme struct + accessors + ThemeBuilder + global state
  names.rs            # String constants for token/style/gradient contract names
  discovery.rs        # User theme directory scanning (app-specific)
  builtins/
    mod.rs            # Auto-generated registry via build.rs
    *.toml            # 39 builtin theme files (auto-discovered at compile time)
  widgets/
    mod.rs
    theme_selector.rs # ThemeSelector stateful widget with live preview + search
  adapters/
    mod.rs
    ratatui.rs        # From impls, inherent span/line/text/gradient_text, gradient helpers
    cli.rs            # colored crate: ColoredExt, ThemeCliExt, gradient_string()
    crossterm.rs      # Direct crossterm: Color, ContentStyle, gradient helpers
    owo_colors.rs     # owo-colors: Style conversion, OwoThemeExt, gradient_string()
    css.rs            # CSS custom properties + classes from tokens/styles/gradients
    syntect.rs        # Syntax highlighting: Theme/Color/StyleModifier generation
    egui.rs           # Immediate-mode GUI: Color32, Visuals from theme tokens
build.rs              # Compile-time theme auto-discovery and codegen
tests/
  color_tests.rs      # Hex parsing, lerp, Display, FromStr
  style_tests.rs      # Builder, merge, all 9 modifiers, serde round-trip
  gradient_tests.rs   # Interpolation, generate, edge cases
  resolver_tests.rs   # Pipeline, cycle detection, strict error paths
  loader_tests.rs     # TOML loading, error paths
  builtins_tests.rs   # Theme validation, token/style/gradient contracts (39 themes)
  export_tests.rs     # TOML export round-trip, save_to_file
  adapter_tests.rs    # Ratatui From impls, inherent methods, Styled trait, all modifiers
  crossterm_tests.rs  # Crossterm Color, ContentStyle, gradient helpers
  owo_colors_tests.rs # owo-colors Style, OwoThemeExt, gradient_string
  css_tests.rs        # CSS vars, classes, gradients, stylesheet
  syntect_tests.rs    # Color, StyleModifier, Theme generation
  egui_tests.rs       # Color32, Visuals, widget visuals, selection
docs/                 # VitePress documentation site (SilkCircuit OKLCH theme)
```

## Development Commands

```bash
cargo check                              # Fast type check
cargo clippy --all-targets --all-features # Pedantic lint gate
cargo test --all-features                 # Full test suite (203 tests)
cargo doc --all-features --open           # Generate docs
cd docs && pnpm dev                       # VitePress dev server
cd docs && pnpm build                     # Build docs for deployment
```

## Feature Flags

| Feature | Default | Description |
|---------|---------|-------------|
| `builtin-themes` | yes | 39 embedded TOML themes via include_str! |
| `gradients` | yes | Multi-stop gradient support |
| `ratatui` | yes | From impls for ratatui types |
| `cli` | no | colored crate adapter for ANSI terminal output |
| `crossterm` | no | Direct crossterm Color/ContentStyle adapter |
| `owo-colors` | no | owo-colors zero-allocation terminal adapter |
| `css` | no | CSS custom properties + classes generation |
| `syntect` | no | Syntax highlighting theme generation |
| `egui` | no | egui Visuals/Color32 adapter |
| `global-state` | no | Process-wide current()/set_theme() |
| `discovery` | no | Load user themes from ~/.config/ |
| `widgets` | no | Theme selector widget with live preview |

## Key Types

- `OpalineColor` — RGB color with hex, tuple, array, u32 conversions + lerp
- `OpalineStyle` — Composed style (fg, bg, 9 modifiers) with builder pattern, `#[non_exhaustive]`
- `Gradient` — Multi-stop color interpolation (new() panics, try_new() returns Result)
- `Theme` — Fully resolved theme with `color()`, `style()`, `gradient()` + strict `try_*` variants; ratatui `span()`, `line()`, `text()`, `gradient_text()` (no trait import needed)
- `ThemeBuilder` — Programmatic theme construction without TOML
- `ThemeInfo` — Metadata for theme discovery and picker UIs
- `OpalineError` — All error variants (IO, Parse, InvalidColor, CircularReference, etc.)

## Builtin Themes (39)

SilkCircuit (Neon, Soft, Glow, Vibrant, Dawn),
Catppuccin (Mocha, Macchiato, Frappé, Latte),
GitHub (Dark Dimmed, Light), Monokai Pro,
Ayu (Dark, Mirage, Light), Night Owl (Dark, Light),
Flexoki (Dark, Light), Palenight,
Rose Pine (Base, Moon, Dawn), Everforest (Dark, Light),
Tokyo Night (Default, Storm, Moon),
Kanagawa (Wave, Dragon, Lotus),
Dracula, Nord, Gruvbox (Dark, Light),
Solarized (Dark, Light), One (Dark, Light)

## Conventions

- Edition 2024, MSRV 1.85
- MIT license
- `unsafe_code = "forbid"`, `clippy::pedantic` deny
- Tests in `tests/` directory, not inline `#[cfg(test)]`
- `thiserror` for error types
- No `.unwrap()` in library code (`.expect()` allowed for compile-time-verified builtins)
- Strict resolver: unresolvable tokens, style refs, gradient stops error immediately

## Token Contract

Every builtin theme must define 26 core semantic tokens across these namespaces:
`text.*`, `bg.*`, `accent.*`, `success/error/warning/info`,
`border.*`, `code.*`

Plus 13 required styles, 5 required gradients — enforced by contract tests.

App-specific semantics (git status, diff, mode indicators) are derived
by consuming apps via `register_default_token()`, not baked into the core.

## Adding a Builtin Theme

Drop a `.toml` file in `src/builtins/`. It's auto-discovered at compile time.
Use underscores in filenames (e.g. `rose_pine.toml` → id: `rose-pine`).
Must pass all contract tests (tokens, styles, gradients).