chromata 1.0.0

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

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

/// bluez
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("bluez"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0x00ff5f),
    cursor: Some(Color::from_hex(0x5f87d7)),
    selection: None,
    line_highlight: None,
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x000000)),
    statusbar_fg: Some(Color::from_hex(0x5f0000)),
    comment: Some(Color::from_hex(0x00afaf)),
    keyword: Some(Color::from_hex(0x00ffff)),
    string: Some(Color::from_hex(0x5f5faf)),
    function: Some(Color::from_hex(0x5f0087)),
    variable: Some(Color::from_hex(0x5f005f)),
    r#type: Some(Color::from_hex(0x00ff00)),
    constant: Some(Color::from_hex(0x5f87d7)),
    operator: Some(Color::from_hex(0x5f00af)),
    tag: Some(Color::from_hex(0x5f5faf)),
    error: Some(Color::from_hex(0x000000)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0x000000)),
    orange: None,
    yellow: Some(Color::from_hex(0x5f5f87)),
    green: Some(Color::from_hex(0x5f5faf)),
    cyan: Some(Color::from_hex(0x00ff00)),
    blue: Some(Color::from_hex(0x5f0087)),
    purple: Some(Color::from_hex(0x00ffff)),
    magenta: Some(Color::from_hex(0x00af5f)),
};