chromata 1.0.0

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

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

/// darkeclipse
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("darkeclipse"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x101520),
    fg: Color::from_hex(0xb0b0b0),
    cursor: Some(Color::from_hex(0xc0c0c0)),
    selection: Some(Color::from_hex(0x000000)),
    line_highlight: Some(Color::from_hex(0x252530)),
    gutter: Some(Color::from_hex(0x606570)),
    statusbar_bg: Some(Color::from_hex(0x808080)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0x70c010)),
    keyword: Some(Color::from_hex(0xf0a0b0)),
    string: Some(Color::from_hex(0x9090f0)),
    function: Some(Color::from_hex(0xf0f0f0)),
    variable: Some(Color::from_hex(0xf0a0b0)),
    r#type: Some(Color::from_hex(0xf0a0b0)),
    constant: Some(Color::from_hex(0xf0b040)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xee1111)),
    warning: Some(Color::from_hex(0xee1111)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xee1111)),
    orange: None,
    yellow: Some(Color::from_hex(0xee1111)),
    green: Some(Color::from_hex(0x9090f0)),
    cyan: Some(Color::from_hex(0xf0a0b0)),
    blue: Some(Color::from_hex(0xf0f0f0)),
    purple: Some(Color::from_hex(0xf0a0b0)),
    magenta: Some(Color::from_hex(0xf0f0f0)),
};