linesmith-core 0.1.3

Internal core engine for linesmith. No SemVer guarantee for direct dependents — depend on the `linesmith` binary or accept breakage between minor versions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `minimal` theme. Every role is unset so `Theme::color`'s fallback
//! chain returns `NoColor`, forcing decoration-only output (bold /
//! dim / italic / underline). Useful for users who want zero color
//! noise and rely on shell-level styling, or for diagnostic captures
//! where ANSI bytes would clutter the comparison.

use super::{Role, Theme};

pub(super) const MINIMAL: Theme = Theme {
    name: "minimal",
    colors: [None; Role::COUNT],
};