chromata 1.0.0

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

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

/// shades-of-teal
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("shades-of-teal"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x232a2f),
    fg: Color::from_hex(0xafccde),
    cursor: None,
    selection: Some(Color::from_hex(0x5a6b77)),
    line_highlight: Some(Color::from_hex(0x1a1a1a)),
    gutter: Some(Color::from_hex(0x3b474e)),
    statusbar_bg: Some(Color::from_hex(0x2b2f1d)),
    statusbar_fg: Some(Color::from_hex(0xcada95)),
    comment: Some(Color::from_hex(0x5c5c5c)),
    keyword: Some(Color::from_hex(0x8ea4b4)),
    string: Some(Color::from_hex(0x768b98)),
    function: None,
    variable: None,
    r#type: Some(Color::from_hex(0x8ea4b4)),
    constant: Some(Color::from_hex(0x808080)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xdeafc5)),
    warning: Some(Color::from_hex(0xdec4ab)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xdeafc5)),
    orange: None,
    yellow: Some(Color::from_hex(0xdec4ab)),
    green: Some(Color::from_hex(0x768b98)),
    cyan: Some(Color::from_hex(0x8ea4b4)),
    blue: None,
    purple: Some(Color::from_hex(0x8ea4b4)),
    magenta: None,
};