chromata 1.0.0

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

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

/// Windows NT
///
/// 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 NT"),
    author: Cow::Borrowed("Fergus Collins (https://github.com/ferguscollins)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xc0c0c0),
    cursor: Some(Color::from_hex(0xc0c0c0)),
    selection: Some(Color::from_hex(0x555555)),
    line_highlight: Some(Color::from_hex(0x2a2a2a)),
    gutter: Some(Color::from_hex(0x808080)),
    statusbar_bg: Some(Color::from_hex(0x2a2a2a)),
    statusbar_fg: Some(Color::from_hex(0xa1a1a1)),
    comment: Some(Color::from_hex(0x808080)),
    keyword: Some(Color::from_hex(0xff00ff)),
    string: Some(Color::from_hex(0x00ff00)),
    function: Some(Color::from_hex(0x0000ff)),
    variable: Some(Color::from_hex(0xff0000)),
    r#type: Some(Color::from_hex(0xffff00)),
    constant: Some(Color::from_hex(0x808000)),
    operator: Some(Color::from_hex(0xc0c0c0)),
    tag: Some(Color::from_hex(0xff0000)),
    error: Some(Color::from_hex(0xff0000)),
    warning: Some(Color::from_hex(0xffff00)),
    info: Some(Color::from_hex(0x0000ff)),
    success: Some(Color::from_hex(0x00ff00)),
    red: Some(Color::from_hex(0xff0000)),
    orange: Some(Color::from_hex(0x808000)),
    yellow: Some(Color::from_hex(0xffff00)),
    green: Some(Color::from_hex(0x00ff00)),
    cyan: Some(Color::from_hex(0x00ffff)),
    blue: Some(Color::from_hex(0x0000ff)),
    purple: Some(Color::from_hex(0xff00ff)),
    magenta: Some(Color::from_hex(0x008000)),
};