chromata 1.0.0

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

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

/// Flexoki Light
///
/// Author: Steph Ango (https://github.com/kepano/flexoki)
/// Variant: Light
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Flexoki Light"),
    author: Cow::Borrowed("Steph Ango (https://github.com/kepano/flexoki)"),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xfffcf0),
    fg: Color::from_hex(0x403e3c),
    cursor: Some(Color::from_hex(0x403e3c)),
    selection: Some(Color::from_hex(0xe6e4d9)),
    line_highlight: Some(Color::from_hex(0xf2f0e5)),
    gutter: Some(Color::from_hex(0xcecdc3)),
    statusbar_bg: Some(Color::from_hex(0xf2f0e5)),
    statusbar_fg: Some(Color::from_hex(0x9f9d96)),
    comment: Some(Color::from_hex(0xcecdc3)),
    keyword: Some(Color::from_hex(0x5e409d)),
    string: Some(Color::from_hex(0x66800b)),
    function: Some(Color::from_hex(0x205ea6)),
    variable: Some(Color::from_hex(0xaf3029)),
    r#type: Some(Color::from_hex(0xad8301)),
    constant: Some(Color::from_hex(0xbc5215)),
    operator: Some(Color::from_hex(0x403e3c)),
    tag: Some(Color::from_hex(0xaf3029)),
    error: Some(Color::from_hex(0xaf3029)),
    warning: Some(Color::from_hex(0xad8301)),
    info: Some(Color::from_hex(0x205ea6)),
    success: Some(Color::from_hex(0x66800b)),
    red: Some(Color::from_hex(0xaf3029)),
    orange: Some(Color::from_hex(0xbc5215)),
    yellow: Some(Color::from_hex(0xad8301)),
    green: Some(Color::from_hex(0x66800b)),
    cyan: Some(Color::from_hex(0x24837b)),
    blue: Some(Color::from_hex(0x205ea6)),
    purple: Some(Color::from_hex(0x5e409d)),
    magenta: Some(Color::from_hex(0xa02f6f)),
};