chromata 1.0.0

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

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

/// Atelier Heath Light
///
/// Author: Bram de Haan (http://atelierbramdehaan.nl)
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Atelier Heath Light"),
    author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf7f3f7),
    fg: Color::from_hex(0x695d69),
    cursor: Some(Color::from_hex(0x695d69)),
    selection: Some(Color::from_hex(0xab9bab)),
    line_highlight: Some(Color::from_hex(0xd8cad8)),
    gutter: Some(Color::from_hex(0x9e8f9e)),
    statusbar_bg: Some(Color::from_hex(0xd8cad8)),
    statusbar_fg: Some(Color::from_hex(0x776977)),
    comment: Some(Color::from_hex(0x9e8f9e)),
    keyword: Some(Color::from_hex(0x7b59c0)),
    string: Some(Color::from_hex(0x918b3b)),
    function: Some(Color::from_hex(0x516aec)),
    variable: Some(Color::from_hex(0xca402b)),
    r#type: Some(Color::from_hex(0xbb8a35)),
    constant: Some(Color::from_hex(0xa65926)),
    operator: Some(Color::from_hex(0x695d69)),
    tag: Some(Color::from_hex(0xca402b)),
    error: Some(Color::from_hex(0xca402b)),
    warning: Some(Color::from_hex(0xbb8a35)),
    info: Some(Color::from_hex(0x516aec)),
    success: Some(Color::from_hex(0x918b3b)),
    red: Some(Color::from_hex(0xca402b)),
    orange: Some(Color::from_hex(0xa65926)),
    yellow: Some(Color::from_hex(0xbb8a35)),
    green: Some(Color::from_hex(0x918b3b)),
    cyan: Some(Color::from_hex(0x159393)),
    blue: Some(Color::from_hex(0x516aec)),
    purple: Some(Color::from_hex(0x7b59c0)),
    magenta: Some(Color::from_hex(0xcc33cc)),
};