chromata 1.0.0

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

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

/// tetragrammaton
///
/// Variant: Dark
/// Contrast: Low
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("tetragrammaton"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Low,
    bg: Color::from_hex(0x180000),
    fg: Color::from_hex(0x953434),
    cursor: None,
    selection: None,
    line_highlight: Some(Color::from_hex(0x280000)),
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x480000)),
    statusbar_fg: Some(Color::from_hex(0x95171a)),
    comment: Some(Color::from_hex(0x689879)),
    keyword: Some(Color::from_hex(0xccaa88)),
    string: Some(Color::from_hex(0x884444)),
    function: Some(Color::from_hex(0xbd3422)),
    variable: None,
    r#type: Some(Color::from_hex(0x975546)),
    constant: Some(Color::from_hex(0xcf8080)),
    operator: Some(Color::from_hex(0xbb9988)),
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0x000080)),
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0x884444)),
    cyan: Some(Color::from_hex(0x975546)),
    blue: Some(Color::from_hex(0xbd3422)),
    purple: Some(Color::from_hex(0xccaa88)),
    magenta: None,
};