use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("breezy"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x232629),
fg: Color::from_hex(0xcfcfc2),
cursor: None,
selection: Some(Color::from_hex(0x2d5c76)),
line_highlight: Some(Color::from_hex(0x2a2e32)),
gutter: Some(Color::from_hex(0x7a7c7d)),
statusbar_bg: Some(Color::from_hex(0x2d5c76)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x7a7c7d)),
keyword: Some(Color::from_hex(0xfdbc4b)),
string: Some(Color::from_hex(0xf44f4f)),
function: Some(Color::from_hex(0xcfcfc2)),
variable: Some(Color::from_hex(0x8e44ad)),
r#type: Some(Color::from_hex(0x2980b9)),
constant: Some(Color::from_hex(0xf67400)),
operator: None,
tag: None,
error: Some(Color::from_hex(0x95da4c)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0x95da4c)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xf44f4f)),
cyan: Some(Color::from_hex(0x2980b9)),
blue: Some(Color::from_hex(0xcfcfc2)),
purple: Some(Color::from_hex(0xfdbc4b)),
magenta: Some(Color::from_hex(0x27ae60)),
};