chromata 1.0.0

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

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

/// zenesque
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("zenesque"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x0f1216),
    fg: Color::from_hex(0xadadad),
    cursor: None,
    selection: Some(Color::from_hex(0x462e44)),
    line_highlight: Some(Color::from_hex(0x000000)),
    gutter: Some(Color::from_hex(0x4d4d44)),
    statusbar_bg: Some(Color::from_hex(0x727272)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0x777777)),
    keyword: Some(Color::from_hex(0x737354)),
    string: Some(Color::from_hex(0x5d7a64)),
    function: Some(Color::from_hex(0x9784a2)),
    variable: Some(Color::from_hex(0xa16f51)),
    r#type: Some(Color::from_hex(0x518991)),
    constant: Some(Color::from_hex(0x8d5c57)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0x6f6f6f)),
    warning: Some(Color::from_hex(0xcfcfcf)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0x6f6f6f)),
    orange: None,
    yellow: Some(Color::from_hex(0xcfcfcf)),
    green: Some(Color::from_hex(0x5d7a64)),
    cyan: Some(Color::from_hex(0x518991)),
    blue: Some(Color::from_hex(0x9784a2)),
    purple: Some(Color::from_hex(0x737354)),
    magenta: Some(Color::from_hex(0x5567a1)),
};