chromata 1.0.0

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

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

/// Hober
///
/// Variant: Dark
/// Contrast: High
/// Source: emacs (emacs-themes-site)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Hober"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xc0c0c0),
    cursor: Some(Color::from_hex(0x48d1cc)),
    selection: Some(Color::from_hex(0x483d8b)),
    line_highlight: None,
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x483d8b)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0xff0000)),
    keyword: Some(Color::from_hex(0x00ffff)),
    string: Some(Color::from_hex(0xffff00)),
    function: Some(Color::from_hex(0x4186be)),
    variable: Some(Color::from_hex(0xffffff)),
    r#type: Some(Color::from_hex(0xff7f50)),
    constant: Some(Color::from_hex(0x00ff00)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffc0cb)),
    warning: Some(Color::from_hex(0xff8c00)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffc0cb)),
    orange: None,
    yellow: Some(Color::from_hex(0xff8c00)),
    green: Some(Color::from_hex(0xffff00)),
    cyan: Some(Color::from_hex(0x00ff00)),
    blue: Some(Color::from_hex(0x4186be)),
    purple: Some(Color::from_hex(0x00ffff)),
    magenta: Some(Color::from_hex(0xffffff)),
};