chromata 1.0.0

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

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

/// archery
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("archery"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x25272c),
    fg: Color::from_hex(0x81a3cf),
    cursor: Some(Color::from_hex(0x0088cc)),
    selection: Some(Color::from_hex(0x81a3cf)),
    line_highlight: Some(Color::from_hex(0x282d34)),
    gutter: Some(Color::from_hex(0x53586f)),
    statusbar_bg: None,
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x535b6f)),
    keyword: Some(Color::from_hex(0x0088cc)),
    string: Some(Color::from_hex(0xf6f9fc)),
    function: Some(Color::from_hex(0x006596)),
    variable: Some(Color::from_hex(0x006596)),
    r#type: Some(Color::from_hex(0x0088cc)),
    constant: Some(Color::from_hex(0x25b8a5)),
    operator: Some(Color::from_hex(0x0088cc)),
    tag: Some(Color::from_hex(0x53586f)),
    error: Some(Color::from_hex(0xc95f5f)),
    warning: Some(Color::from_hex(0xf07d30)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xc95f5f)),
    orange: None,
    yellow: Some(Color::from_hex(0xf07d30)),
    green: Some(Color::from_hex(0xf6f9fc)),
    cyan: Some(Color::from_hex(0x0088cc)),
    blue: Some(Color::from_hex(0x006596)),
    purple: Some(Color::from_hex(0x0088cc)),
    magenta: Some(Color::from_hex(0xf6f9fc)),
};