chromata 1.0.0

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

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

/// Bliss
///
/// Variant: Dark
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Bliss"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x191919),
    fg: Color::from_hex(0xc5c8c6),
    cursor: Some(Color::from_hex(0xaeafad)),
    selection: Some(Color::from_hex(0x373b41)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x3b3c3c)),
    statusbar_bg: Some(Color::from_hex(0x2a2a2a)),
    statusbar_fg: Some(Color::from_hex(0xc5c8c6)),
    comment: Some(Color::from_hex(0x4f6d82)),
    keyword: Some(Color::from_hex(0x64fbc8)),
    string: Some(Color::from_hex(0x99e1df)),
    function: Some(Color::from_hex(0x3bb1df)),
    variable: Some(Color::from_hex(0xabfdd8)),
    r#type: Some(Color::from_hex(0xefabec)),
    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(0x99e1df)),
    cyan: Some(Color::from_hex(0xefabec)),
    blue: Some(Color::from_hex(0x3bb1df)),
    purple: Some(Color::from_hex(0x64fbc8)),
    magenta: Some(Color::from_hex(0xabfdd8)),
};