chromata 1.0.0

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

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

/// Waher
///
/// Variant: Dark
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Waher"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x252620),
    fg: Color::from_hex(0xcedbe7),
    cursor: Some(Color::from_hex(0xf8f8f2)),
    selection: Some(Color::from_hex(0x49483e)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x3e4d4a)),
    statusbar_bg: Some(Color::from_hex(0x292923)),
    statusbar_fg: Some(Color::from_hex(0xcedbe7)),
    comment: Some(Color::from_hex(0x7f9f7f)),
    keyword: Some(Color::from_hex(0xdec77b)),
    string: Some(Color::from_hex(0x8cbed6)),
    function: Some(Color::from_hex(0xd65921)),
    variable: Some(Color::from_hex(0xefa252)),
    r#type: Some(Color::from_hex(0x607060)),
    constant: Some(Color::from_hex(0xdec77b)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0x8cbed6)),
    cyan: Some(Color::from_hex(0xdec77b)),
    blue: Some(Color::from_hex(0xd65921)),
    purple: Some(Color::from_hex(0xdec77b)),
    magenta: Some(Color::from_hex(0xefa252)),
};