use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("breeze"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x005c70),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xd86020)),
selection: Some(Color::from_hex(0x6060d0)),
line_highlight: None,
gutter: Some(Color::from_hex(0x60a8bc)),
statusbar_bg: Some(Color::from_hex(0xd0d0e0)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0xc8d0d0)),
keyword: Some(Color::from_hex(0xffff80)),
string: None,
function: None,
variable: Some(Color::from_hex(0xcacaff)),
r#type: Some(Color::from_hex(0x80ffa0)),
constant: Some(Color::from_hex(0x60ffff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0x60ff60)),
cyan: Some(Color::from_hex(0x80ffa0)),
blue: None,
purple: Some(Color::from_hex(0xffff80)),
magenta: Some(Color::from_hex(0xffc0ff)),
};