chromata 1.0.0

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

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

/// arcadia
///
/// Variant: Light
/// Contrast: Low
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("arcadia"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Low,
    bg: Color::from_hex(0xe4e4e4),
    fg: Color::from_hex(0x6c6c6c),
    cursor: None,
    selection: None,
    line_highlight: Some(Color::from_hex(0xeeeeee)),
    gutter: Some(Color::from_hex(0xbcbcbc)),
    statusbar_bg: Some(Color::from_hex(0x5f5f87)),
    statusbar_fg: Some(Color::from_hex(0xeeeeee)),
    comment: Some(Color::from_hex(0xb2b2b2)),
    keyword: Some(Color::from_hex(0x5f87af)),
    string: Some(Color::from_hex(0x008787)),
    function: Some(Color::from_hex(0x875f87)),
    variable: Some(Color::from_hex(0x8787af)),
    r#type: Some(Color::from_hex(0xaf005f)),
    constant: Some(Color::from_hex(0x0087af)),
    operator: Some(Color::from_hex(0x5f5faf)),
    tag: None,
    error: Some(Color::from_hex(0xaf005f)),
    warning: Some(Color::from_hex(0xdfaf00)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xaf005f)),
    orange: None,
    yellow: Some(Color::from_hex(0xdfaf00)),
    green: Some(Color::from_hex(0x008787)),
    cyan: Some(Color::from_hex(0xaf005f)),
    blue: Some(Color::from_hex(0x875f87)),
    purple: Some(Color::from_hex(0x5f87af)),
    magenta: Some(Color::from_hex(0x8787d7)),
};