chromata 1.0.0

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

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

/// newsprint
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("newsprint"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xeeeeee),
    fg: Color::from_hex(0x333333),
    cursor: None,
    selection: Some(Color::from_hex(0xaeaeae)),
    line_highlight: Some(Color::from_hex(0xdddddd)),
    gutter: Some(Color::from_hex(0xaaaaaa)),
    statusbar_bg: Some(Color::from_hex(0x8d8d8d)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x888888)),
    keyword: Some(Color::from_hex(0x999999)),
    string: Some(Color::from_hex(0x7c7c7c)),
    function: Some(Color::from_hex(0x111111)),
    variable: Some(Color::from_hex(0x111111)),
    r#type: Some(Color::from_hex(0x111111)),
    constant: Some(Color::from_hex(0x7c7c7c)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0x909090)),
    warning: Some(Color::from_hex(0x303030)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0x909090)),
    orange: None,
    yellow: Some(Color::from_hex(0x303030)),
    green: Some(Color::from_hex(0x7c7c7c)),
    cyan: Some(Color::from_hex(0x111111)),
    blue: Some(Color::from_hex(0x111111)),
    purple: Some(Color::from_hex(0x999999)),
    magenta: Some(Color::from_hex(0x949494)),
};