chromata 1.0.0

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

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

/// eclipse
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("eclipse"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x0080f0)),
    selection: Some(Color::from_hex(0xffc0a0)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x6b6b6b)),
    statusbar_bg: Some(Color::from_hex(0x4570aa)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x236e25)),
    keyword: Some(Color::from_hex(0xb64f90)),
    string: Some(Color::from_hex(0x8010a0)),
    function: None,
    variable: Some(Color::from_hex(0xb07800)),
    r#type: Some(Color::from_hex(0x7f0055)),
    constant: Some(Color::from_hex(0x00884c)),
    operator: None,
    tag: Some(Color::from_hex(0x8040f0)),
    error: Some(Color::from_hex(0xf8f8f8)),
    warning: Some(Color::from_hex(0xf8f8f8)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xf8f8f8)),
    orange: None,
    yellow: Some(Color::from_hex(0xf8f8f8)),
    green: Some(Color::from_hex(0x8010a0)),
    cyan: Some(Color::from_hex(0x7f0055)),
    blue: None,
    purple: Some(Color::from_hex(0xb64f90)),
    magenta: Some(Color::from_hex(0x683821)),
};