colorant 0.8.0

Per-directory terminal theme switcher with system dark/light mode support
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Top-level subcommand entry points routed from `main.rs`.
//!
//! Each submodule corresponds to one `colorant` subcommand and exposes a
//! single `run` function. The orchestration logic (config, mode detection,
//! OSC emission) lives in `apply`; the others are thin wrappers.

pub mod apply;
pub mod current;
pub mod doctor;
pub mod init;
pub mod reset;
pub mod show;
pub mod themes;