chromata 1.0.0

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

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

/// Soft Charcoal
///
/// Variant: Dark
/// Contrast: Normal
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Soft Charcoal"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x191919),
    fg: Color::from_hex(0xc2c2c2),
    cursor: Some(Color::from_hex(0x626262)),
    selection: Some(Color::from_hex(0x3c414c)),
    line_highlight: Some(Color::from_hex(0x252525)),
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x202020)),
    statusbar_fg: Some(Color::from_hex(0xbabdb6)),
    comment: Some(Color::from_hex(0x808080)),
    keyword: Some(Color::from_hex(0x8aa234)),
    string: Some(Color::from_hex(0x5d90cd)),
    function: Some(Color::from_hex(0x7a8bbd)),
    variable: Some(Color::from_hex(0x8885b2)),
    r#type: Some(Color::from_hex(0x8aa6c1)),
    constant: Some(Color::from_hex(0x8aa6c1)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0x5d90cd)),
    cyan: Some(Color::from_hex(0x8aa6c1)),
    blue: Some(Color::from_hex(0x7a8bbd)),
    purple: Some(Color::from_hex(0x8aa234)),
    magenta: Some(Color::from_hex(0x8885b2)),
};