chromata 1.0.0

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

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

/// chance-of-storm
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("chance-of-storm"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x181c20),
    fg: Color::from_hex(0xcacfd3),
    cursor: Some(Color::from_hex(0x8fdef9)),
    selection: Some(Color::from_hex(0x24557a)),
    line_highlight: Some(Color::from_hex(0x2a2e31)),
    gutter: Some(Color::from_hex(0x2e363d)),
    statusbar_bg: Some(Color::from_hex(0x060809)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x69839a)),
    keyword: Some(Color::from_hex(0x8ac6f2)),
    string: Some(Color::from_hex(0x89e14b)),
    function: Some(Color::from_hex(0x9e7cd7)),
    variable: Some(Color::from_hex(0x2ed6d7)),
    r#type: Some(Color::from_hex(0x489fd7)),
    constant: Some(Color::from_hex(0x96defa)),
    operator: None,
    tag: None,
    error: None,
    warning: Some(Color::from_hex(0xbb6d6d)),
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0xbb6d6d)),
    green: Some(Color::from_hex(0x89e14b)),
    cyan: Some(Color::from_hex(0x489fd7)),
    blue: Some(Color::from_hex(0x9e7cd7)),
    purple: Some(Color::from_hex(0x8ac6f2)),
    magenta: Some(Color::from_hex(0xf99d71)),
};