chromata 1.0.0

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

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

/// greyblue
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("greyblue"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x090909),
    fg: Color::from_hex(0xb7af9f),
    cursor: Some(Color::from_hex(0x7fff00)),
    selection: Some(Color::from_hex(0x353535)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x7f7f5f)),
    statusbar_bg: Some(Color::from_hex(0xcfcfbf)),
    statusbar_fg: Some(Color::from_hex(0x070707)),
    comment: Some(Color::from_hex(0x555565)),
    keyword: Some(Color::from_hex(0xd1bfb1)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xaaaaba)),
    r#type: Some(Color::from_hex(0xd1bfb1)),
    constant: Some(Color::from_hex(0xd1bfb1)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0xffffff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xffffff)),
    green: Some(Color::from_hex(0xdfdf00)),
    cyan: Some(Color::from_hex(0xd1bfb1)),
    blue: None,
    purple: Some(Color::from_hex(0xd1bfb1)),
    magenta: None,
};