chromata 1.0.0

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

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

/// Atelier Forest 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 Forest Light"),
    author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf1efee),
    fg: Color::from_hex(0x68615e),
    cursor: Some(Color::from_hex(0x68615e)),
    selection: Some(Color::from_hex(0xa8a19f)),
    line_highlight: Some(Color::from_hex(0xe6e2e0)),
    gutter: Some(Color::from_hex(0x9c9491)),
    statusbar_bg: Some(Color::from_hex(0xe6e2e0)),
    statusbar_fg: Some(Color::from_hex(0x766e6b)),
    comment: Some(Color::from_hex(0x9c9491)),
    keyword: Some(Color::from_hex(0x6666ea)),
    string: Some(Color::from_hex(0x7b9726)),
    function: Some(Color::from_hex(0x407ee7)),
    variable: Some(Color::from_hex(0xf22c40)),
    r#type: Some(Color::from_hex(0xc38418)),
    constant: Some(Color::from_hex(0xdf5320)),
    operator: Some(Color::from_hex(0x68615e)),
    tag: Some(Color::from_hex(0xf22c40)),
    error: Some(Color::from_hex(0xf22c40)),
    warning: Some(Color::from_hex(0xc38418)),
    info: Some(Color::from_hex(0x407ee7)),
    success: Some(Color::from_hex(0x7b9726)),
    red: Some(Color::from_hex(0xf22c40)),
    orange: Some(Color::from_hex(0xdf5320)),
    yellow: Some(Color::from_hex(0xc38418)),
    green: Some(Color::from_hex(0x7b9726)),
    cyan: Some(Color::from_hex(0x3d97b8)),
    blue: Some(Color::from_hex(0x407ee7)),
    purple: Some(Color::from_hex(0x6666ea)),
    magenta: Some(Color::from_hex(0xc33ff3)),
};