chromata 1.0.0

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

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

/// plasticine
///
/// Variant: Dark
/// Contrast: Low
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("plasticine"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Low,
    bg: Color::from_hex(0x5f8787),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0xffffff)),
    selection: Some(Color::from_hex(0xd7d7ff)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x87afaf)),
    statusbar_bg: Some(Color::from_hex(0x800000)),
    statusbar_fg: Some(Color::from_hex(0x87afaf)),
    comment: Some(Color::from_hex(0x87afaf)),
    keyword: Some(Color::from_hex(0x87d7d7)),
    string: Some(Color::from_hex(0xafd7af)),
    function: Some(Color::from_hex(0xffffff)),
    variable: Some(Color::from_hex(0xffffaf)),
    r#type: Some(Color::from_hex(0x87ffaf)),
    constant: Some(Color::from_hex(0xd7ffff)),
    operator: Some(Color::from_hex(0xafd7d7)),
    tag: Some(Color::from_hex(0x87d700)),
    error: Some(Color::from_hex(0xd7ffff)),
    warning: Some(Color::from_hex(0xd7ffff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xd7ffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xd7ffff)),
    green: Some(Color::from_hex(0xafd7af)),
    cyan: Some(Color::from_hex(0x87ffaf)),
    blue: Some(Color::from_hex(0xffffff)),
    purple: Some(Color::from_hex(0x87d7d7)),
    magenta: Some(Color::from_hex(0xffffaf)),
};