chromata 1.0.0

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

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

/// simplon
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("simplon"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xebebeb),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x444454)),
    selection: Some(Color::from_hex(0x99c2ff)),
    line_highlight: Some(Color::from_hex(0xd4d4d8)),
    gutter: Some(Color::from_hex(0xa1a1a1)),
    statusbar_bg: Some(Color::from_hex(0xadc2d6)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0x008a00)),
    keyword: Some(Color::from_hex(0x000000)),
    string: Some(Color::from_hex(0x9c2e9c)),
    function: Some(Color::from_hex(0x990000)),
    variable: Some(Color::from_hex(0x0000ff)),
    r#type: Some(Color::from_hex(0x0047b2)),
    constant: Some(Color::from_hex(0x177f80)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff1100)),
    warning: Some(Color::from_hex(0xef5939)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff1100)),
    orange: None,
    yellow: Some(Color::from_hex(0xef5939)),
    green: Some(Color::from_hex(0x9c2e9c)),
    cyan: Some(Color::from_hex(0x0047b2)),
    blue: Some(Color::from_hex(0x990000)),
    purple: Some(Color::from_hex(0x000000)),
    magenta: Some(Color::from_hex(0x0033cc)),
};