chromata 1.0.0

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

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

/// iA Dark
///
/// Author: iA Inc. (modified by aramisgithub)
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("iA Dark"),
    author: Cow::Borrowed("iA Inc. (modified by aramisgithub)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x1a1a1a),
    fg: Color::from_hex(0xcccccc),
    cursor: Some(Color::from_hex(0xcccccc)),
    selection: Some(Color::from_hex(0x1d414d)),
    line_highlight: Some(Color::from_hex(0x222222)),
    gutter: Some(Color::from_hex(0x767676)),
    statusbar_bg: Some(Color::from_hex(0x222222)),
    statusbar_fg: Some(Color::from_hex(0xb8b8b8)),
    comment: Some(Color::from_hex(0x767676)),
    keyword: Some(Color::from_hex(0xb98eb2)),
    string: Some(Color::from_hex(0x83a471)),
    function: Some(Color::from_hex(0x8eccdd)),
    variable: Some(Color::from_hex(0xd88568)),
    r#type: Some(Color::from_hex(0xb99353)),
    constant: Some(Color::from_hex(0xd86868)),
    operator: Some(Color::from_hex(0xcccccc)),
    tag: Some(Color::from_hex(0xd88568)),
    error: Some(Color::from_hex(0xd88568)),
    warning: Some(Color::from_hex(0xb99353)),
    info: Some(Color::from_hex(0x8eccdd)),
    success: Some(Color::from_hex(0x83a471)),
    red: Some(Color::from_hex(0xd88568)),
    orange: Some(Color::from_hex(0xd86868)),
    yellow: Some(Color::from_hex(0xb99353)),
    green: Some(Color::from_hex(0x83a471)),
    cyan: Some(Color::from_hex(0x7c9cae)),
    blue: Some(Color::from_hex(0x8eccdd)),
    purple: Some(Color::from_hex(0xb98eb2)),
    magenta: Some(Color::from_hex(0x8b6c37)),
};