chromata 1.0.0

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

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

/// Zenbones
///
/// Author: mcchrish
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Zenbones"),
    author: Cow::Borrowed("mcchrish"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x191919),
    fg: Color::from_hex(0xb279a7),
    cursor: Some(Color::from_hex(0xb279a7)),
    selection: Some(Color::from_hex(0x819b69)),
    line_highlight: Some(Color::from_hex(0xde6e7c)),
    gutter: Some(Color::from_hex(0xb77e64)),
    statusbar_bg: Some(Color::from_hex(0xde6e7c)),
    statusbar_fg: Some(Color::from_hex(0x6099c0)),
    comment: Some(Color::from_hex(0xb77e64)),
    keyword: Some(Color::from_hex(0x65b8c1)),
    string: Some(Color::from_hex(0xd68c67)),
    function: Some(Color::from_hex(0xcf86c1)),
    variable: Some(Color::from_hex(0x3d3839)),
    r#type: Some(Color::from_hex(0x8bae68)),
    constant: Some(Color::from_hex(0xe8838f)),
    operator: Some(Color::from_hex(0xb279a7)),
    tag: Some(Color::from_hex(0x3d3839)),
    error: Some(Color::from_hex(0x3d3839)),
    warning: Some(Color::from_hex(0x8bae68)),
    info: Some(Color::from_hex(0xcf86c1)),
    success: Some(Color::from_hex(0xd68c67)),
    red: Some(Color::from_hex(0x3d3839)),
    orange: Some(Color::from_hex(0xe8838f)),
    yellow: Some(Color::from_hex(0x8bae68)),
    green: Some(Color::from_hex(0xd68c67)),
    cyan: Some(Color::from_hex(0x61abda)),
    blue: Some(Color::from_hex(0xcf86c1)),
    purple: Some(Color::from_hex(0x65b8c1)),
    magenta: Some(Color::from_hex(0x8e8e8e)),
};