chromata 1.0.0

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

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

/// spring
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("spring"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xcce8cf),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x2f4f4f)),
    selection: Some(Color::from_hex(0xccffff)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x1060a0)),
    statusbar_bg: Some(Color::from_hex(0x2f4f4f)),
    statusbar_fg: Some(Color::from_hex(0xf5deb3)),
    comment: Some(Color::from_hex(0x1e90ff)),
    keyword: Some(Color::from_hex(0xfc548f)),
    string: Some(Color::from_hex(0xa07040)),
    function: None,
    variable: None,
    r#type: Some(Color::from_hex(0x009933)),
    constant: Some(Color::from_hex(0xa07040)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0x8b038d)),
    green: Some(Color::from_hex(0xa07040)),
    cyan: Some(Color::from_hex(0x009933)),
    blue: None,
    purple: Some(Color::from_hex(0xfc548f)),
    magenta: Some(Color::from_hex(0x1060a0)),
};