chromata 1.0.0

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

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

/// angr
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("angr"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x262626),
    fg: Color::from_hex(0xe5e5e5),
    cursor: Some(Color::from_hex(0x8da1a1)),
    selection: Some(Color::from_hex(0x005f87)),
    line_highlight: Some(Color::from_hex(0x303030)),
    gutter: Some(Color::from_hex(0x878787)),
    statusbar_bg: Some(Color::from_hex(0x3a3a3a)),
    statusbar_fg: Some(Color::from_hex(0xe4e4e4)),
    comment: Some(Color::from_hex(0x585858)),
    keyword: Some(Color::from_hex(0xc67c48)),
    string: Some(Color::from_hex(0x87afdf)),
    function: Some(Color::from_hex(0x82c057)),
    variable: Some(Color::from_hex(0xffaf87)),
    r#type: Some(Color::from_hex(0x87dfaf)),
    constant: Some(Color::from_hex(0x87dfdf)),
    operator: Some(Color::from_hex(0xf6da7b)),
    tag: Some(Color::from_hex(0x55747c)),
    error: Some(Color::from_hex(0xeeeeee)),
    warning: Some(Color::from_hex(0xc0c0c0)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xeeeeee)),
    orange: None,
    yellow: Some(Color::from_hex(0xc0c0c0)),
    green: Some(Color::from_hex(0x87afdf)),
    cyan: Some(Color::from_hex(0x87dfaf)),
    blue: Some(Color::from_hex(0x82c057)),
    purple: Some(Color::from_hex(0xc67c48)),
    magenta: Some(Color::from_hex(0xffdfaf)),
};