chromata 1.0.0

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

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

/// falcon
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("falcon"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x0b0b1a),
    fg: Color::from_hex(0xd4d4d9),
    cursor: Some(Color::from_hex(0x89898c)),
    selection: Some(Color::from_hex(0x89898c)),
    line_highlight: Some(Color::from_hex(0x3e3e40)),
    gutter: Some(Color::from_hex(0x646466)),
    statusbar_bg: Some(Color::from_hex(0x89898c)),
    statusbar_fg: Some(Color::from_hex(0xd4d4d9)),
    comment: Some(Color::from_hex(0x89898c)),
    keyword: Some(Color::from_hex(0xff8000)),
    string: Some(Color::from_hex(0xafafb2)),
    function: Some(Color::from_hex(0xffbf00)),
    variable: Some(Color::from_hex(0xd4d4d9)),
    r#type: Some(Color::from_hex(0x8fa3bf)),
    constant: Some(Color::from_hex(0xff4000)),
    operator: Some(Color::from_hex(0xffbf00)),
    tag: Some(Color::from_hex(0xff8000)),
    error: Some(Color::from_hex(0xff4000)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff4000)),
    orange: None,
    yellow: Some(Color::from_hex(0xff8000)),
    green: Some(Color::from_hex(0xafafb2)),
    cyan: Some(Color::from_hex(0x8fa3bf)),
    blue: Some(Color::from_hex(0xffbf00)),
    purple: Some(Color::from_hex(0xff8000)),
    magenta: Some(Color::from_hex(0xffefbf)),
};