chromata 1.0.0

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

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

/// neverland
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("neverland"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x121212),
    fg: Color::from_hex(0xffd7ff),
    cursor: Some(Color::from_hex(0xdadada)),
    selection: Some(Color::from_hex(0x262626)),
    line_highlight: Some(Color::from_hex(0x1c1c1c)),
    gutter: Some(Color::from_hex(0x626262)),
    statusbar_bg: Some(Color::from_hex(0xaf8700)),
    statusbar_fg: Some(Color::from_hex(0x1c1c1c)),
    comment: Some(Color::from_hex(0xaf875f)),
    keyword: Some(Color::from_hex(0x87afff)),
    string: Some(Color::from_hex(0xd7af5f)),
    function: Some(Color::from_hex(0x87ff00)),
    variable: Some(Color::from_hex(0xafd75f)),
    r#type: Some(Color::from_hex(0xd75f00)),
    constant: Some(Color::from_hex(0x87af00)),
    operator: Some(Color::from_hex(0xafd700)),
    tag: Some(Color::from_hex(0xd7005f)),
    error: Some(Color::from_hex(0xff00af)),
    warning: Some(Color::from_hex(0x0000ff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff00af)),
    orange: None,
    yellow: Some(Color::from_hex(0x0000ff)),
    green: Some(Color::from_hex(0xd7af5f)),
    cyan: Some(Color::from_hex(0xd75f00)),
    blue: Some(Color::from_hex(0x87ff00)),
    purple: Some(Color::from_hex(0x87afff)),
    magenta: Some(Color::from_hex(0xffafd7)),
};