chromata 1.0.0

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

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

/// ecostation
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("ecostation"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x222430),
    fg: Color::from_hex(0xacb3c4),
    cursor: Some(Color::from_hex(0xff8b64)),
    selection: Some(Color::from_hex(0x433c49)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x4093cc)),
    statusbar_bg: Some(Color::from_hex(0x35394d)),
    statusbar_fg: Some(Color::from_hex(0xacb3c4)),
    comment: Some(Color::from_hex(0x7c7b9d)),
    keyword: Some(Color::from_hex(0x009900)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x99cc33)),
    r#type: Some(Color::from_hex(0xc99669)),
    constant: Some(Color::from_hex(0xcc6666)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0x000000)),
    warning: Some(Color::from_hex(0x000000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0x000000)),
    orange: None,
    yellow: Some(Color::from_hex(0x000000)),
    green: Some(Color::from_hex(0x99cc33)),
    cyan: Some(Color::from_hex(0xc99669)),
    blue: None,
    purple: Some(Color::from_hex(0x009900)),
    magenta: Some(Color::from_hex(0xaa53d5)),
};