chromata 1.0.0

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

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

/// rootwater
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("rootwater"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x151b1d),
    fg: Color::from_hex(0xbabdb6),
    cursor: Some(Color::from_hex(0x77dd88)),
    selection: Some(Color::from_hex(0x448844)),
    line_highlight: Some(Color::from_hex(0x303035)),
    gutter: Some(Color::from_hex(0x607075)),
    statusbar_bg: None,
    statusbar_fg: Some(Color::from_hex(0x88ee99)),
    comment: Some(Color::from_hex(0x656565)),
    keyword: Some(Color::from_hex(0x8fffff)),
    string: Some(Color::from_hex(0x77dd88)),
    function: Some(Color::from_hex(0xffaa33)),
    variable: None,
    r#type: None,
    constant: Some(Color::from_hex(0x88ee99)),
    operator: None,
    tag: None,
    error: None,
    warning: Some(Color::from_hex(0x77dd88)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0x223322)),
    orange: None,
    yellow: Some(Color::from_hex(0x77dd88)),
    green: Some(Color::from_hex(0x77dd88)),
    cyan: None,
    blue: Some(Color::from_hex(0xffaa33)),
    purple: Some(Color::from_hex(0x8fffff)),
    magenta: None,
};