use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("symfony"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x222222),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x5a647e)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x2b2b2b)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xbd48b3)),
keyword: Some(Color::from_hex(0xffcc66)),
string: Some(Color::from_hex(0x99ff00)),
function: Some(Color::from_hex(0xffcc66)),
variable: Some(Color::from_hex(0x6d9cbe)),
r#type: Some(Color::from_hex(0xda4939)),
constant: Some(Color::from_hex(0x6d9cbe)),
operator: Some(Color::from_hex(0xf0f0f0)),
tag: Some(Color::from_hex(0xffcc66)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x99ff00)),
cyan: Some(Color::from_hex(0xda4939)),
blue: Some(Color::from_hex(0xffcc66)),
purple: Some(Color::from_hex(0xffcc66)),
magenta: Some(Color::from_hex(0xe6e1dc)),
};