chromata 1.0.0

1000+ editor color themes as compile-time Rust constants
Documentation
//! booshnickle dark color theme.
//!
//! Auto-generated by `cargo xtask generate base16` — do not edit.

use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;

/// booshnickle dark
///
/// Author: Honey D (@honeydbeatz)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("booshnickle dark"),
    author: Cow::Borrowed("Honey D (@honeydbeatz)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x191914),
    fg: Color::from_hex(0xbdbd97),
    cursor: Some(Color::from_hex(0xbdbd97)),
    selection: Some(Color::from_hex(0x5b5b49)),
    line_highlight: Some(Color::from_hex(0x3a3a2e)),
    gutter: Some(Color::from_hex(0x7c7c63)),
    statusbar_bg: Some(Color::from_hex(0x3a3a2e)),
    statusbar_fg: Some(Color::from_hex(0x9c9c7d)),
    comment: Some(Color::from_hex(0x7c7c63)),
    keyword: Some(Color::from_hex(0xf2bfd9)),
    string: Some(Color::from_hex(0xe7ff99)),
    function: Some(Color::from_hex(0xccbfd9)),
    variable: Some(Color::from_hex(0xffbfa5)),
    r#type: Some(Color::from_hex(0xfff299)),
    constant: Some(Color::from_hex(0xffdc99)),
    operator: Some(Color::from_hex(0xbdbd97)),
    tag: Some(Color::from_hex(0xffbfa5)),
    error: Some(Color::from_hex(0xffbfa5)),
    warning: Some(Color::from_hex(0xfff299)),
    info: Some(Color::from_hex(0xccbfd9)),
    success: Some(Color::from_hex(0xe7ff99)),
    red: Some(Color::from_hex(0xffbfa5)),
    orange: Some(Color::from_hex(0xffdc99)),
    yellow: Some(Color::from_hex(0xfff299)),
    green: Some(Color::from_hex(0xe7ff99)),
    cyan: Some(Color::from_hex(0xbfffc5)),
    blue: Some(Color::from_hex(0xccbfd9)),
    purple: Some(Color::from_hex(0xf2bfd9)),
    magenta: Some(Color::from_hex(0xe5d6a6)),
};