chromata 1.0.0

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

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

/// proton
///
/// Variant: Light
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("proton"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf0f0f0),
    fg: Color::from_hex(0x404040),
    cursor: Some(Color::from_hex(0x404040)),
    selection: Some(Color::from_hex(0xd0d0d0)),
    line_highlight: Some(Color::from_hex(0xe0e0e0)),
    gutter: Some(Color::from_hex(0x606060)),
    statusbar_bg: Some(Color::from_hex(0x808080)),
    statusbar_fg: Some(Color::from_hex(0xf0f0f0)),
    comment: Some(Color::from_hex(0x9098a0)),
    keyword: Some(Color::from_hex(0x606060)),
    string: Some(Color::from_hex(0xa07060)),
    function: Some(Color::from_hex(0xb08020)),
    variable: Some(Color::from_hex(0x608050)),
    r#type: Some(Color::from_hex(0x607080)),
    constant: Some(Color::from_hex(0x508040)),
    operator: Some(Color::from_hex(0xa77039)),
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff7f50)),
    orange: None,
    yellow: Some(Color::from_hex(0x603020)),
    green: Some(Color::from_hex(0xa07060)),
    cyan: Some(Color::from_hex(0x607080)),
    blue: Some(Color::from_hex(0xb08020)),
    purple: Some(Color::from_hex(0x606060)),
    magenta: Some(Color::from_hex(0x605080)),
};