chromata 1.0.0

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

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

/// Solar Flare Light
///
/// Author: Chuck Harmston (https://chuck.harmston.ch)
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Solar Flare Light"),
    author: Cow::Borrowed("Chuck Harmston (https://chuck.harmston.ch)"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf5f7fa),
    fg: Color::from_hex(0x586875),
    cursor: Some(Color::from_hex(0x586875)),
    selection: Some(Color::from_hex(0xa6afb8)),
    line_highlight: Some(Color::from_hex(0xe8e9ed)),
    gutter: Some(Color::from_hex(0x85939e)),
    statusbar_bg: Some(Color::from_hex(0xe8e9ed)),
    statusbar_fg: Some(Color::from_hex(0x667581)),
    comment: Some(Color::from_hex(0x85939e)),
    keyword: Some(Color::from_hex(0xa363d5)),
    string: Some(Color::from_hex(0x7cc844)),
    function: Some(Color::from_hex(0x33b5e1)),
    variable: Some(Color::from_hex(0xef5253)),
    r#type: Some(Color::from_hex(0xe4b51c)),
    constant: Some(Color::from_hex(0xe66b2b)),
    operator: Some(Color::from_hex(0x586875)),
    tag: Some(Color::from_hex(0xef5253)),
    error: Some(Color::from_hex(0xef5253)),
    warning: Some(Color::from_hex(0xe4b51c)),
    info: Some(Color::from_hex(0x33b5e1)),
    success: Some(Color::from_hex(0x7cc844)),
    red: Some(Color::from_hex(0xef5253)),
    orange: Some(Color::from_hex(0xe66b2b)),
    yellow: Some(Color::from_hex(0xe4b51c)),
    green: Some(Color::from_hex(0x7cc844)),
    cyan: Some(Color::from_hex(0x52cbb0)),
    blue: Some(Color::from_hex(0x33b5e1)),
    purple: Some(Color::from_hex(0xa363d5)),
    magenta: Some(Color::from_hex(0xd73c9a)),
};