chromata 1.0.0

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

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

/// Zenburn
///
/// Author: elnawe
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Zenburn"),
    author: Cow::Borrowed("elnawe"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x383838),
    fg: Color::from_hex(0xdcdccc),
    cursor: Some(Color::from_hex(0xdcdccc)),
    selection: Some(Color::from_hex(0x606060)),
    line_highlight: Some(Color::from_hex(0x404040)),
    gutter: Some(Color::from_hex(0x6f6f6f)),
    statusbar_bg: Some(Color::from_hex(0x404040)),
    statusbar_fg: Some(Color::from_hex(0x808080)),
    comment: Some(Color::from_hex(0x6f6f6f)),
    keyword: Some(Color::from_hex(0xdc8cc3)),
    string: Some(Color::from_hex(0x5f7f5f)),
    function: Some(Color::from_hex(0x7cb8bb)),
    variable: Some(Color::from_hex(0xdca3a3)),
    r#type: Some(Color::from_hex(0xe0cf9f)),
    constant: Some(Color::from_hex(0xdfaf8f)),
    operator: Some(Color::from_hex(0xdcdccc)),
    tag: Some(Color::from_hex(0xdca3a3)),
    error: Some(Color::from_hex(0xdca3a3)),
    warning: Some(Color::from_hex(0xe0cf9f)),
    info: Some(Color::from_hex(0x7cb8bb)),
    success: Some(Color::from_hex(0x5f7f5f)),
    red: Some(Color::from_hex(0xdca3a3)),
    orange: Some(Color::from_hex(0xdfaf8f)),
    yellow: Some(Color::from_hex(0xe0cf9f)),
    green: Some(Color::from_hex(0x5f7f5f)),
    cyan: Some(Color::from_hex(0x93e0e3)),
    blue: Some(Color::from_hex(0x7cb8bb)),
    purple: Some(Color::from_hex(0xdc8cc3)),
    magenta: Some(Color::from_hex(0x000000)),
};