chromata 1.0.0

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

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

/// wolfpack
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("wolfpack"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x222222),
    fg: Color::from_hex(0xf8f8f2),
    cursor: Some(Color::from_hex(0xaeafad)),
    selection: Some(Color::from_hex(0x373b41)),
    line_highlight: Some(Color::from_hex(0x323332)),
    gutter: Some(Color::from_hex(0x747574)),
    statusbar_bg: Some(Color::from_hex(0x515252)),
    statusbar_fg: Some(Color::from_hex(0xc5c8c6)),
    comment: Some(Color::from_hex(0x4f6d82)),
    keyword: Some(Color::from_hex(0x64fbc8)),
    string: Some(Color::from_hex(0x99e1df)),
    function: Some(Color::from_hex(0x3bb1df)),
    variable: Some(Color::from_hex(0x64fbc8)),
    r#type: None,
    constant: None,
    operator: Some(Color::from_hex(0x8dd9d9)),
    tag: Some(Color::from_hex(0xabfdd8)),
    error: Some(Color::from_hex(0xced2cf)),
    warning: Some(Color::from_hex(0xced2cf)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xced2cf)),
    orange: None,
    yellow: Some(Color::from_hex(0xced2cf)),
    green: Some(Color::from_hex(0x99e1df)),
    cyan: None,
    blue: Some(Color::from_hex(0x3bb1df)),
    purple: Some(Color::from_hex(0x64fbc8)),
    magenta: Some(Color::from_hex(0x64fbc8)),
};