chromata 1.0.0

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

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

/// aurora
///
/// Variant: Light
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("aurora"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xfafafa),
    fg: Color::from_hex(0x404850),
    cursor: Some(Color::from_hex(0xb0b4b8)),
    selection: None,
    line_highlight: Some(Color::from_hex(0xf6f6f6)),
    gutter: Some(Color::from_hex(0x333333)),
    statusbar_bg: Some(Color::from_hex(0x8090a0)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x007020)),
    keyword: Some(Color::from_hex(0x06287e)),
    string: Some(Color::from_hex(0x4070a0)),
    function: Some(Color::from_hex(0x06287e)),
    variable: Some(Color::from_hex(0x5b3674)),
    r#type: Some(Color::from_hex(0x06287e)),
    constant: Some(Color::from_hex(0xa07040)),
    operator: Some(Color::from_hex(0x06287e)),
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0x5f8787)),
    green: Some(Color::from_hex(0x4070a0)),
    cyan: Some(Color::from_hex(0x06287e)),
    blue: Some(Color::from_hex(0x06287e)),
    purple: Some(Color::from_hex(0x06287e)),
    magenta: Some(Color::from_hex(0x1060a0)),
};