chromata 1.0.0

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

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

/// pacific
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("pacific"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x101d23),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0x00c1a2)),
    selection: Some(Color::from_hex(0x009192)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0xa6d5f6)),
    statusbar_bg: Some(Color::from_hex(0xa6d5f6)),
    statusbar_fg: Some(Color::from_hex(0x0b1317)),
    comment: Some(Color::from_hex(0xa59b9b)),
    keyword: Some(Color::from_hex(0x7bd3d4)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xabd585)),
    r#type: Some(Color::from_hex(0x6cd69a)),
    constant: Some(Color::from_hex(0xefecca)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xb692c1)),
    green: Some(Color::from_hex(0x07af07)),
    cyan: Some(Color::from_hex(0x6cd69a)),
    blue: None,
    purple: Some(Color::from_hex(0x7bd3d4)),
    magenta: Some(Color::from_hex(0xfed678)),
};