chromata 1.0.0

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

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

/// Windows 10
///
/// Author: Fergus Collins (https://github.com/ferguscollins)
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Windows 10"),
    author: Cow::Borrowed("Fergus Collins (https://github.com/ferguscollins)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x0c0c0c),
    fg: Color::from_hex(0xcccccc),
    cursor: Some(Color::from_hex(0xcccccc)),
    selection: Some(Color::from_hex(0x535353)),
    line_highlight: Some(Color::from_hex(0x2f2f2f)),
    gutter: Some(Color::from_hex(0x767676)),
    statusbar_bg: Some(Color::from_hex(0x2f2f2f)),
    statusbar_fg: Some(Color::from_hex(0xb9b9b9)),
    comment: Some(Color::from_hex(0x767676)),
    keyword: Some(Color::from_hex(0xb4009e)),
    string: Some(Color::from_hex(0x16c60c)),
    function: Some(Color::from_hex(0x3b78ff)),
    variable: Some(Color::from_hex(0xe74856)),
    r#type: Some(Color::from_hex(0xf9f1a5)),
    constant: Some(Color::from_hex(0xc19c00)),
    operator: Some(Color::from_hex(0xcccccc)),
    tag: Some(Color::from_hex(0xe74856)),
    error: Some(Color::from_hex(0xe74856)),
    warning: Some(Color::from_hex(0xf9f1a5)),
    info: Some(Color::from_hex(0x3b78ff)),
    success: Some(Color::from_hex(0x16c60c)),
    red: Some(Color::from_hex(0xe74856)),
    orange: Some(Color::from_hex(0xc19c00)),
    yellow: Some(Color::from_hex(0xf9f1a5)),
    green: Some(Color::from_hex(0x16c60c)),
    cyan: Some(Color::from_hex(0x61d6d6)),
    blue: Some(Color::from_hex(0x3b78ff)),
    purple: Some(Color::from_hex(0xb4009e)),
    magenta: Some(Color::from_hex(0x13a10e)),
};