chromata 1.0.0

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

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

/// lilypink
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("lilypink"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x242424),
    fg: Color::from_hex(0xe0e0e0),
    cursor: Some(Color::from_hex(0x666666)),
    selection: Some(Color::from_hex(0x000000)),
    line_highlight: Some(Color::from_hex(0x303030)),
    gutter: Some(Color::from_hex(0x444444)),
    statusbar_bg: Some(Color::from_hex(0x1c1c1c)),
    statusbar_fg: Some(Color::from_hex(0xa0a0a0)),
    comment: Some(Color::from_hex(0x99968b)),
    keyword: Some(Color::from_hex(0x8ac6f2)),
    string: Some(Color::from_hex(0x98ff85)),
    function: Some(Color::from_hex(0xffff99)),
    variable: Some(Color::from_hex(0xffff99)),
    r#type: Some(Color::from_hex(0xffff99)),
    constant: Some(Color::from_hex(0xffa1cf)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0x731b00)),
    orange: None,
    yellow: Some(Color::from_hex(0xffddaa)),
    green: Some(Color::from_hex(0x98ff85)),
    cyan: Some(Color::from_hex(0xffff99)),
    blue: Some(Color::from_hex(0xffff99)),
    purple: Some(Color::from_hex(0x8ac6f2)),
    magenta: Some(Color::from_hex(0x008faf)),
};