hjkl-theme 0.1.0

Unified theme schema: TOML parse, palette interning, capture fallback chain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Unified theme schema for the hjkl editor stack.
//!
//! Phase 1: TOML parse, palette interning, capture fallback chain.
//! No rendering backends in this phase.

pub mod captures;
mod color;
mod error;
mod palette;
mod style;
pub mod theme;

pub use captures::CaptureMap;
pub use color::Color;
pub use error::ThemeError;
pub use palette::Palette;
pub use style::{Modifiers, StyleSpec, UiStyles};
pub use theme::Theme;