chromata 1.0.0

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

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

/// Heetch Dark
///
/// Author: Geoffrey Teale (tealeg@gmail.com)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Heetch Dark"),
    author: Cow::Borrowed("Geoffrey Teale (tealeg@gmail.com)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x190134),
    fg: Color::from_hex(0xbdb6c5),
    cursor: Some(Color::from_hex(0xbdb6c5)),
    selection: Some(Color::from_hex(0x5a496e)),
    line_highlight: Some(Color::from_hex(0x392551)),
    gutter: Some(Color::from_hex(0x7b6d8b)),
    statusbar_bg: Some(Color::from_hex(0x392551)),
    statusbar_fg: Some(Color::from_hex(0x9c92a8)),
    comment: Some(Color::from_hex(0x7b6d8b)),
    keyword: Some(Color::from_hex(0x82034c)),
    string: Some(Color::from_hex(0xc33678)),
    function: Some(Color::from_hex(0xbd0152)),
    variable: Some(Color::from_hex(0x27d9d5)),
    r#type: Some(Color::from_hex(0x8f6c97)),
    constant: Some(Color::from_hex(0x5ba2b6)),
    operator: Some(Color::from_hex(0xbdb6c5)),
    tag: Some(Color::from_hex(0x27d9d5)),
    error: Some(Color::from_hex(0x27d9d5)),
    warning: Some(Color::from_hex(0x8f6c97)),
    info: Some(Color::from_hex(0xbd0152)),
    success: Some(Color::from_hex(0xc33678)),
    red: Some(Color::from_hex(0x27d9d5)),
    orange: Some(Color::from_hex(0x5ba2b6)),
    yellow: Some(Color::from_hex(0x8f6c97)),
    green: Some(Color::from_hex(0xc33678)),
    cyan: Some(Color::from_hex(0xf80059)),
    blue: Some(Color::from_hex(0xbd0152)),
    purple: Some(Color::from_hex(0x82034c)),
    magenta: Some(Color::from_hex(0x470546)),
};