chromata 1.0.0

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

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

/// Lavender
///
/// Variant: Dark
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Lavender"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x29222e),
    fg: Color::from_hex(0xe0ceed),
    cursor: Some(Color::from_hex(0xf8f8f0)),
    selection: Some(Color::from_hex(0x161a1f)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x4e4454)),
    statusbar_bg: Some(Color::from_hex(0x3b3341)),
    statusbar_fg: Some(Color::from_hex(0xe0ceed)),
    comment: Some(Color::from_hex(0x51415c)),
    keyword: Some(Color::from_hex(0x8e6da6)),
    string: Some(Color::from_hex(0xf5b0ef)),
    function: Some(Color::from_hex(0xecc0fa)),
    variable: None,
    r#type: Some(Color::from_hex(0x8e69c9)),
    constant: None,
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0xf5b0ef)),
    cyan: Some(Color::from_hex(0x8e69c9)),
    blue: Some(Color::from_hex(0xecc0fa)),
    purple: Some(Color::from_hex(0x8e6da6)),
    magenta: None,
};