chromata 1.0.0

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

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

/// django
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("django"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x0b2f20),
    fg: Color::from_hex(0xf8f8f8),
    cursor: Some(Color::from_hex(0x336242)),
    selection: None,
    line_highlight: None,
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x8fbb9e)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x245032)),
    keyword: Some(Color::from_hex(0xf2e862)),
    string: Some(Color::from_hex(0x87bb9e)),
    function: Some(Color::from_hex(0xfec756)),
    variable: None,
    r#type: Some(Color::from_hex(0x96dd3b)),
    constant: Some(Color::from_hex(0x87bb9e)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0x000080)),
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0x87bb9e)),
    cyan: Some(Color::from_hex(0x96dd3b)),
    blue: Some(Color::from_hex(0xfec756)),
    purple: Some(Color::from_hex(0xf2e862)),
    magenta: Some(Color::from_hex(0xaa5507)),
};