chromata 1.0.0

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

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

/// peppers
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("peppers"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x003366),
    fg: Color::from_hex(0xffffcc),
    cursor: None,
    selection: None,
    line_highlight: None,
    gutter: None,
    statusbar_bg: None,
    statusbar_fg: None,
    comment: Some(Color::from_hex(0xcccccc)),
    keyword: Some(Color::from_hex(0xff8088)),
    string: Some(Color::from_hex(0x99ccff)),
    function: Some(Color::from_hex(0xfffcfc)),
    variable: Some(Color::from_hex(0x33ff99)),
    r#type: Some(Color::from_hex(0xccffff)),
    constant: Some(Color::from_hex(0xf0f080)),
    operator: Some(Color::from_hex(0xff0000)),
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0xcccccc)),
    green: Some(Color::from_hex(0x99ccff)),
    cyan: Some(Color::from_hex(0xccffff)),
    blue: Some(Color::from_hex(0xfffcfc)),
    purple: Some(Color::from_hex(0xff8088)),
    magenta: Some(Color::from_hex(0xffff00)),
};