chromata 1.0.0

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

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

/// northsky
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("northsky"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xeeeeee),
    cursor: Some(Color::from_hex(0xd75f00)),
    selection: Some(Color::from_hex(0x84af84)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x005f00)),
    statusbar_bg: Some(Color::from_hex(0x222222)),
    statusbar_fg: Some(Color::from_hex(0xb0b0b0)),
    comment: Some(Color::from_hex(0xa8a8a8)),
    keyword: Some(Color::from_hex(0xffff00)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xadcbf1)),
    r#type: Some(Color::from_hex(0xffae66)),
    constant: Some(Color::from_hex(0x72a5e4)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0xf60000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xf60000)),
    green: None,
    cyan: Some(Color::from_hex(0xffae66)),
    blue: None,
    purple: Some(Color::from_hex(0xffff00)),
    magenta: Some(Color::from_hex(0x14967c)),
};