use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("cobalt"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x001b33),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xf9e0f5)),
selection: Some(Color::from_hex(0xe4dfff)),
line_highlight: Some(Color::from_hex(0x1d2a30)),
gutter: Some(Color::from_hex(0xffe4cc)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x0088ff)),
keyword: Some(Color::from_hex(0xffdd00)),
string: Some(Color::from_hex(0x3ad900)),
function: Some(Color::from_hex(0x40e0d0)),
variable: Some(Color::from_hex(0x40e0d0)),
r#type: Some(Color::from_hex(0x40e0d0)),
constant: Some(Color::from_hex(0xff0044)),
operator: Some(Color::from_hex(0xff9d00)),
tag: Some(Color::from_hex(0xff9d00)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0x080808)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0x080808)),
green: Some(Color::from_hex(0x3ad900)),
cyan: Some(Color::from_hex(0x40e0d0)),
blue: Some(Color::from_hex(0x40e0d0)),
purple: Some(Color::from_hex(0xffdd00)),
magenta: Some(Color::from_hex(0xc526ff)),
};