chromata 1.0.0

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

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

/// lilydjwg_dark
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("lilydjwg_dark"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x222222),
    fg: Color::from_hex(0x00ccff),
    cursor: Some(Color::from_hex(0x00aaff)),
    selection: Some(Color::from_hex(0x3d3d3d)),
    line_highlight: Some(Color::from_hex(0x333333)),
    gutter: Some(Color::from_hex(0xff77dd)),
    statusbar_bg: Some(Color::from_hex(0x000000)),
    statusbar_fg: Some(Color::from_hex(0x00c4ff)),
    comment: Some(Color::from_hex(0x686868)),
    keyword: Some(Color::from_hex(0xd86868)),
    string: Some(Color::from_hex(0x10a303)),
    function: Some(Color::from_hex(0x986cff)),
    variable: Some(Color::from_hex(0x986cff)),
    r#type: Some(Color::from_hex(0xffa500)),
    constant: Some(Color::from_hex(0x10a303)),
    operator: Some(Color::from_hex(0xd86868)),
    tag: Some(Color::from_hex(0xff00ff)),
    error: Some(Color::from_hex(0xffff00)),
    warning: Some(Color::from_hex(0xffa500)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffff00)),
    orange: None,
    yellow: Some(Color::from_hex(0xffa500)),
    green: Some(Color::from_hex(0x10a303)),
    cyan: Some(Color::from_hex(0xffa500)),
    blue: Some(Color::from_hex(0x986cff)),
    purple: Some(Color::from_hex(0xd86868)),
    magenta: Some(Color::from_hex(0xff99ff)),
};