chromata 1.0.0

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

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

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