chromata 1.0.0

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

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

/// liquidcarbon
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("liquidcarbon"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x303030),
    fg: Color::from_hex(0xbdcdcd),
    cursor: None,
    selection: Some(Color::from_hex(0x90ccff)),
    line_highlight: Some(Color::from_hex(0x3a3a3a)),
    gutter: Some(Color::from_hex(0x767676)),
    statusbar_bg: Some(Color::from_hex(0x445566)),
    statusbar_fg: Some(Color::from_hex(0xddeeff)),
    comment: Some(Color::from_hex(0x809090)),
    keyword: Some(Color::from_hex(0x7ac5cd)),
    string: Some(Color::from_hex(0x559b70)),
    function: Some(Color::from_hex(0x92a5de)),
    variable: Some(Color::from_hex(0x9f79ee)),
    r#type: Some(Color::from_hex(0x4169e1)),
    constant: Some(Color::from_hex(0xcdad00)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff6a6a)),
    warning: Some(Color::from_hex(0xee9a00)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff6a6a)),
    orange: None,
    yellow: Some(Color::from_hex(0xee9a00)),
    green: Some(Color::from_hex(0x559b70)),
    cyan: Some(Color::from_hex(0x4169e1)),
    blue: Some(Color::from_hex(0x92a5de)),
    purple: Some(Color::from_hex(0x7ac5cd)),
    magenta: Some(Color::from_hex(0x009acd)),
};