chromata 1.0.0

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

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

/// Flexoki Dark
///
/// Author: Steph Ango (https://github.com/kepano/flexoki)
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Flexoki Dark"),
    author: Cow::Borrowed("Steph Ango (https://github.com/kepano/flexoki)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x100f0f),
    fg: Color::from_hex(0xcecdc3),
    cursor: Some(Color::from_hex(0xcecdc3)),
    selection: Some(Color::from_hex(0x282726)),
    line_highlight: Some(Color::from_hex(0x1c1b1a)),
    gutter: Some(Color::from_hex(0x575653)),
    statusbar_bg: Some(Color::from_hex(0x1c1b1a)),
    statusbar_fg: Some(Color::from_hex(0x878580)),
    comment: Some(Color::from_hex(0x575653)),
    keyword: Some(Color::from_hex(0x8b7ec8)),
    string: Some(Color::from_hex(0x879a39)),
    function: Some(Color::from_hex(0x4385be)),
    variable: Some(Color::from_hex(0xd14d41)),
    r#type: Some(Color::from_hex(0xd0a215)),
    constant: Some(Color::from_hex(0xda702c)),
    operator: Some(Color::from_hex(0xcecdc3)),
    tag: Some(Color::from_hex(0xd14d41)),
    error: Some(Color::from_hex(0xd14d41)),
    warning: Some(Color::from_hex(0xd0a215)),
    info: Some(Color::from_hex(0x4385be)),
    success: Some(Color::from_hex(0x879a39)),
    red: Some(Color::from_hex(0xd14d41)),
    orange: Some(Color::from_hex(0xda702c)),
    yellow: Some(Color::from_hex(0xd0a215)),
    green: Some(Color::from_hex(0x879a39)),
    cyan: Some(Color::from_hex(0x3aa99f)),
    blue: Some(Color::from_hex(0x4385be)),
    purple: Some(Color::from_hex(0x8b7ec8)),
    magenta: Some(Color::from_hex(0xce5d97)),
};