chromata 1.0.0

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

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

/// Cherry Blossom
///
/// Variant: Dark
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Cherry Blossom"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x120f14),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0xd96e26)),
    selection: Some(Color::from_hex(0x1f102f)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x403047)),
    statusbar_bg: Some(Color::from_hex(0x2b283d)),
    statusbar_fg: Some(Color::from_hex(0x8c86e4)),
    comment: Some(Color::from_hex(0x5f5a60)),
    keyword: Some(Color::from_hex(0x742fd1)),
    string: Some(Color::from_hex(0xffb5d8)),
    function: Some(Color::from_hex(0xf94fa0)),
    variable: Some(Color::from_hex(0xfeda98)),
    r#type: Some(Color::from_hex(0xdd0b53)),
    constant: Some(Color::from_hex(0x3edad4)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xcc3333)),
    warning: Some(Color::from_hex(0xd96e26)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xcc3333)),
    orange: None,
    yellow: Some(Color::from_hex(0xd96e26)),
    green: Some(Color::from_hex(0xffb5d8)),
    cyan: Some(Color::from_hex(0x3edad4)),
    blue: Some(Color::from_hex(0xf94fa0)),
    purple: Some(Color::from_hex(0x742fd1)),
    magenta: Some(Color::from_hex(0xfeda98)),
};