chromata 1.0.0

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

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

/// darkocean
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("darkocean"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xe0ffff),
    cursor: Some(Color::from_hex(0xadd8e6)),
    selection: Some(Color::from_hex(0xffffff)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x8db6cd)),
    statusbar_bg: Some(Color::from_hex(0x8db6cd)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0x8db6cd)),
    keyword: Some(Color::from_hex(0x72a5ee)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x009acd)),
    r#type: Some(Color::from_hex(0x3b9c9c)),
    constant: Some(Color::from_hex(0xc34a2c)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffe0)),
    warning: Some(Color::from_hex(0xb22222)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffe0)),
    orange: None,
    yellow: Some(Color::from_hex(0xb22222)),
    green: None,
    cyan: Some(Color::from_hex(0x3b9c9c)),
    blue: None,
    purple: Some(Color::from_hex(0x72a5ee)),
    magenta: Some(Color::from_hex(0xc12869)),
};