chromata 1.0.0

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

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

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