chromata 1.0.0

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

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

/// af
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("af"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xdfdfdf),
    cursor: None,
    selection: None,
    line_highlight: None,
    gutter: Some(Color::from_hex(0x808000)),
    statusbar_bg: None,
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x808080)),
    keyword: Some(Color::from_hex(0x808000)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x87def0)),
    r#type: Some(Color::from_hex(0x008000)),
    constant: Some(Color::from_hex(0xff99ff)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xc0c0c0)),
    warning: Some(Color::from_hex(0x800000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xc0c0c0)),
    orange: None,
    yellow: Some(Color::from_hex(0x800000)),
    green: None,
    cyan: Some(Color::from_hex(0x008000)),
    blue: None,
    purple: Some(Color::from_hex(0x808000)),
    magenta: Some(Color::from_hex(0x800080)),
};