chromata 1.0.0

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

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

/// Subdued
///
/// Variant: Dark
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Subdued"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xd3d7cf),
    cursor: None,
    selection: Some(Color::from_hex(0x2e3436)),
    line_highlight: None,
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x1f1f1f)),
    statusbar_fg: Some(Color::from_hex(0xeeeeec)),
    comment: Some(Color::from_hex(0x61635e)),
    keyword: Some(Color::from_hex(0x729fcf)),
    string: Some(Color::from_hex(0x77507b)),
    function: Some(Color::from_hex(0xc4a000)),
    variable: None,
    r#type: Some(Color::from_hex(0xad7fa8)),
    constant: Some(Color::from_hex(0x4e9a06)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0x77507b)),
    cyan: Some(Color::from_hex(0x4e9a06)),
    blue: Some(Color::from_hex(0xc4a000)),
    purple: Some(Color::from_hex(0x729fcf)),
    magenta: None,
};