chromata 1.0.0

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

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

/// carvedwoodcool
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("carvedwoodcool"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x05181c),
    fg: Color::from_hex(0xaa9aa3),
    cursor: Some(Color::from_hex(0x104550)),
    selection: Some(Color::from_hex(0x33dfef)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0xd0c5c0)),
    statusbar_bg: Some(Color::from_hex(0xd0a59a)),
    statusbar_fg: Some(Color::from_hex(0x102015)),
    comment: Some(Color::from_hex(0x2d303d)),
    keyword: Some(Color::from_hex(0xf0caba)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xd07a70)),
    r#type: Some(Color::from_hex(0xc09a8a)),
    constant: Some(Color::from_hex(0x55464a)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xc0c0c0)),
    warning: Some(Color::from_hex(0x800000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xc0c0c0)),
    orange: None,
    yellow: Some(Color::from_hex(0x800000)),
    green: None,
    cyan: Some(Color::from_hex(0xc09a8a)),
    blue: None,
    purple: Some(Color::from_hex(0xf0caba)),
    magenta: Some(Color::from_hex(0xaa7065)),
};