chromata 1.0.0

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

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

/// Leuven
///
/// Variant: Light
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Leuven"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x333333),
    cursor: Some(Color::from_hex(0x0fb300)),
    selection: None,
    line_highlight: None,
    gutter: Some(Color::from_hex(0xafafaf)),
    statusbar_bg: Some(Color::from_hex(0x335ea8)),
    statusbar_fg: Some(Color::from_hex(0x85ceeb)),
    comment: Some(Color::from_hex(0x8d8d84)),
    keyword: Some(Color::from_hex(0x0000ff)),
    string: None,
    function: Some(Color::from_hex(0x006699)),
    variable: Some(Color::from_hex(0xba36a5)),
    r#type: Some(Color::from_hex(0x6434a3)),
    constant: Some(Color::from_hex(0xd0372d)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: Some(Color::from_hex(0xffa500)),
    info: None,
    success: Some(Color::from_hex(0x008000)),
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xffa500)),
    green: Some(Color::from_hex(0x008000)),
    cyan: Some(Color::from_hex(0xd0372d)),
    blue: Some(Color::from_hex(0x006699)),
    purple: Some(Color::from_hex(0x0000ff)),
    magenta: Some(Color::from_hex(0xba36a5)),
};