chromata 1.0.0

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

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

/// asmanian_blood
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("asmanian_blood"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x080404),
    fg: Color::from_hex(0xb4b0b0),
    cursor: None,
    selection: Some(Color::from_hex(0x282020)),
    line_highlight: Some(Color::from_hex(0x201c1c)),
    gutter: Some(Color::from_hex(0x848070)),
    statusbar_bg: Some(Color::from_hex(0x301810)),
    statusbar_fg: Some(Color::from_hex(0xf8e0d0)),
    comment: Some(Color::from_hex(0x686460)),
    keyword: Some(Color::from_hex(0x506090)),
    string: Some(Color::from_hex(0xa06050)),
    function: Some(Color::from_hex(0x60b050)),
    variable: Some(Color::from_hex(0xc0b060)),
    r#type: Some(Color::from_hex(0x705850)),
    constant: Some(Color::from_hex(0x60d060)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0xa06050)),
    green: Some(Color::from_hex(0xa06050)),
    cyan: Some(Color::from_hex(0x705850)),
    blue: Some(Color::from_hex(0x60b050)),
    purple: Some(Color::from_hex(0x506090)),
    magenta: Some(Color::from_hex(0xa090a0)),
};