chromata 1.0.0

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

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

/// Da One White
///
/// Author: NNB (https://github.com/NNBnh)
/// Variant: Light
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Da One White"),
    author: Cow::Borrowed("NNB (https://github.com/NNBnh)"),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x181818),
    cursor: Some(Color::from_hex(0x181818)),
    selection: Some(Color::from_hex(0x888888)),
    line_highlight: Some(Color::from_hex(0xc8c8c8)),
    gutter: Some(Color::from_hex(0x585858)),
    statusbar_bg: Some(Color::from_hex(0xc8c8c8)),
    statusbar_fg: Some(Color::from_hex(0x282828)),
    comment: Some(Color::from_hex(0x585858)),
    keyword: Some(Color::from_hex(0xc173d1)),
    string: Some(Color::from_hex(0x76a85d)),
    function: Some(Color::from_hex(0x5890f8)),
    variable: Some(Color::from_hex(0xde5d6e)),
    r#type: Some(Color::from_hex(0xb3684f)),
    constant: Some(Color::from_hex(0xff9470)),
    operator: Some(Color::from_hex(0x181818)),
    tag: Some(Color::from_hex(0xde5d6e)),
    error: Some(Color::from_hex(0xde5d6e)),
    warning: Some(Color::from_hex(0xb3684f)),
    info: Some(Color::from_hex(0x5890f8)),
    success: Some(Color::from_hex(0x76a85d)),
    red: Some(Color::from_hex(0xde5d6e)),
    orange: Some(Color::from_hex(0xff9470)),
    yellow: Some(Color::from_hex(0xb3684f)),
    green: Some(Color::from_hex(0x76a85d)),
    cyan: Some(Color::from_hex(0x64b5a7)),
    blue: Some(Color::from_hex(0x5890f8)),
    purple: Some(Color::from_hex(0xc173d1)),
    magenta: Some(Color::from_hex(0xb3684f)),
};