chromata 1.0.0

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

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

/// Solar Flare
///
/// Author: Chuck Harmston (https://chuck.harmston.ch)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Solar Flare"),
    author: Cow::Borrowed("Chuck Harmston (https://chuck.harmston.ch)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x18262f),
    fg: Color::from_hex(0xa6afb8),
    cursor: Some(Color::from_hex(0xa6afb8)),
    selection: Some(Color::from_hex(0x586875)),
    line_highlight: Some(Color::from_hex(0x222e38)),
    gutter: Some(Color::from_hex(0x667581)),
    statusbar_bg: Some(Color::from_hex(0x222e38)),
    statusbar_fg: Some(Color::from_hex(0x85939e)),
    comment: Some(Color::from_hex(0x667581)),
    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(0xa6afb8)),
    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)),
};