chromata 1.0.0

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

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

/// Harmonic16 Light
///
/// Author: Jannik Siebert (https://github.com/janniks)
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Harmonic16 Light"),
    author: Cow::Borrowed("Jannik Siebert (https://github.com/janniks)"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf7f9fb),
    fg: Color::from_hex(0x405c79),
    cursor: Some(Color::from_hex(0x405c79)),
    selection: Some(Color::from_hex(0xcbd6e2)),
    line_highlight: Some(Color::from_hex(0xe5ebf1)),
    gutter: Some(Color::from_hex(0xaabcce)),
    statusbar_bg: Some(Color::from_hex(0xe5ebf1)),
    statusbar_fg: Some(Color::from_hex(0x627e99)),
    comment: Some(Color::from_hex(0xaabcce)),
    keyword: Some(Color::from_hex(0xbf568b)),
    string: Some(Color::from_hex(0x56bf8b)),
    function: Some(Color::from_hex(0x8b56bf)),
    variable: Some(Color::from_hex(0xbf8b56)),
    r#type: Some(Color::from_hex(0x8bbf56)),
    constant: Some(Color::from_hex(0xbfbf56)),
    operator: Some(Color::from_hex(0x405c79)),
    tag: Some(Color::from_hex(0xbf8b56)),
    error: Some(Color::from_hex(0xbf8b56)),
    warning: Some(Color::from_hex(0x8bbf56)),
    info: Some(Color::from_hex(0x8b56bf)),
    success: Some(Color::from_hex(0x56bf8b)),
    red: Some(Color::from_hex(0xbf8b56)),
    orange: Some(Color::from_hex(0xbfbf56)),
    yellow: Some(Color::from_hex(0x8bbf56)),
    green: Some(Color::from_hex(0x56bf8b)),
    cyan: Some(Color::from_hex(0x568bbf)),
    blue: Some(Color::from_hex(0x8b56bf)),
    purple: Some(Color::from_hex(0xbf568b)),
    magenta: Some(Color::from_hex(0xbf5656)),
};