chromata 1.0.0

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

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

/// c16gui
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("c16gui"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xffffff),
    cursor: None,
    selection: Some(Color::from_hex(0x808080)),
    line_highlight: Some(Color::from_hex(0x808080)),
    gutter: Some(Color::from_hex(0xffff00)),
    statusbar_bg: None,
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x008080)),
    keyword: Some(Color::from_hex(0xffff00)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x00ffff)),
    r#type: Some(Color::from_hex(0x00ff00)),
    constant: Some(Color::from_hex(0xff0000)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0xff0000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xff0000)),
    green: None,
    cyan: Some(Color::from_hex(0x00ff00)),
    blue: None,
    purple: Some(Color::from_hex(0xffff00)),
    magenta: Some(Color::from_hex(0xff00ff)),
};