chromata 1.0.0

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

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

/// herald
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("herald"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x1f1f1f),
    fg: Color::from_hex(0xd0d0d0),
    cursor: Some(Color::from_hex(0xffee68)),
    selection: Some(Color::from_hex(0x000000)),
    line_highlight: Some(Color::from_hex(0x000000)),
    gutter: Some(Color::from_hex(0x696567)),
    statusbar_bg: Some(Color::from_hex(0x000000)),
    statusbar_fg: Some(Color::from_hex(0x696567)),
    comment: Some(Color::from_hex(0x696567)),
    keyword: Some(Color::from_hex(0xe783e9)),
    string: Some(Color::from_hex(0xffb539)),
    function: Some(Color::from_hex(0x90cbf1)),
    variable: Some(Color::from_hex(0x70bdf1)),
    r#type: Some(Color::from_hex(0xffee68)),
    constant: Some(Color::from_hex(0x6df584)),
    operator: Some(Color::from_hex(0xfc6984)),
    tag: None,
    error: Some(Color::from_hex(0xd0d0d0)),
    warning: Some(Color::from_hex(0x000000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xd0d0d0)),
    orange: None,
    yellow: Some(Color::from_hex(0x000000)),
    green: Some(Color::from_hex(0xffb539)),
    cyan: Some(Color::from_hex(0xffee68)),
    blue: Some(Color::from_hex(0x90cbf1)),
    purple: Some(Color::from_hex(0xe783e9)),
    magenta: Some(Color::from_hex(0xbf81fa)),
};