use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("bluechia"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x05131c),
fg: Color::from_hex(0xd3daed),
cursor: Some(Color::from_hex(0xd2ff00)),
selection: Some(Color::from_hex(0x448844)),
line_highlight: Some(Color::from_hex(0x303035)),
gutter: Some(Color::from_hex(0xafcd63)),
statusbar_bg: None,
statusbar_fg: Some(Color::from_hex(0xcfddea)),
comment: Some(Color::from_hex(0x7b8487)),
keyword: Some(Color::from_hex(0xf19dae)),
string: Some(Color::from_hex(0xd2ff00)),
function: Some(Color::from_hex(0xef008c)),
variable: None,
r#type: None,
constant: Some(Color::from_hex(0xcfddea)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xeb7aa0)),
warning: Some(Color::from_hex(0xd2ff00)),
info: None,
success: None,
red: Some(Color::from_hex(0xeb7aa0)),
orange: None,
yellow: Some(Color::from_hex(0xd2ff00)),
green: Some(Color::from_hex(0xd2ff00)),
cyan: None,
blue: Some(Color::from_hex(0xef008c)),
purple: Some(Color::from_hex(0xf19dae)),
magenta: Some(Color::from_hex(0x8ddaea)),
};