chromata 1.0.0

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

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

/// stormpetrel
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("stormpetrel"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x0b141a),
    fg: Color::from_hex(0x787e82),
    cursor: Some(Color::from_hex(0x61707a)),
    selection: Some(Color::from_hex(0x0b141a)),
    line_highlight: Some(Color::from_hex(0x1d252b)),
    gutter: Some(Color::from_hex(0x61707a)),
    statusbar_bg: Some(Color::from_hex(0x0b141a)),
    statusbar_fg: Some(Color::from_hex(0x61707a)),
    comment: Some(Color::from_hex(0x61707a)),
    keyword: Some(Color::from_hex(0x5b8a55)),
    string: Some(Color::from_hex(0x548587)),
    function: Some(Color::from_hex(0x5f8299)),
    variable: Some(Color::from_hex(0x5f8299)),
    r#type: Some(Color::from_hex(0x8a7c55)),
    constant: Some(Color::from_hex(0x548587)),
    operator: Some(Color::from_hex(0x5b8a55)),
    tag: Some(Color::from_hex(0x9e7276)),
    error: Some(Color::from_hex(0x9e7276)),
    warning: Some(Color::from_hex(0x9e7276)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0x9e7276)),
    orange: None,
    yellow: Some(Color::from_hex(0x9e7276)),
    green: Some(Color::from_hex(0x548587)),
    cyan: Some(Color::from_hex(0x8a7c55)),
    blue: Some(Color::from_hex(0x5f8299)),
    purple: Some(Color::from_hex(0x5b8a55)),
    magenta: Some(Color::from_hex(0x9c7760)),
};