chromata 1.0.0

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

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

/// murphy
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("murphy"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0x87ff87),
    cursor: Some(Color::from_hex(0x87ff87)),
    selection: Some(Color::from_hex(0x005f00)),
    line_highlight: Some(Color::from_hex(0x444444)),
    gutter: Some(Color::from_hex(0xffff00)),
    statusbar_bg: Some(Color::from_hex(0x00008b)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0xffa700)),
    keyword: Some(Color::from_hex(0xffff00)),
    string: None,
    function: Some(Color::from_hex(0x00ffff)),
    variable: Some(Color::from_hex(0x00ffff)),
    r#type: Some(Color::from_hex(0xbcbcbc)),
    constant: Some(Color::from_hex(0xffffff)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0xffa700)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xffa700)),
    green: Some(Color::from_hex(0xffffff)),
    cyan: Some(Color::from_hex(0xbcbcbc)),
    blue: Some(Color::from_hex(0x00ffff)),
    purple: Some(Color::from_hex(0xffff00)),
    magenta: Some(Color::from_hex(0xffd7af)),
};