use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("seoul"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffff00)),
selection: None,
line_highlight: Some(Color::from_hex(0x5fd7d7)),
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x5fff87)),
keyword: Some(Color::from_hex(0x5f87d7)),
string: Some(Color::from_hex(0x008700)),
function: Some(Color::from_hex(0x5fd700)),
variable: Some(Color::from_hex(0x005fff)),
r#type: Some(Color::from_hex(0x5fd700)),
constant: Some(Color::from_hex(0xffffff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0x008700)),
green: Some(Color::from_hex(0x008700)),
cyan: Some(Color::from_hex(0x5fd700)),
blue: Some(Color::from_hex(0x5fd700)),
purple: Some(Color::from_hex(0x5f87d7)),
magenta: Some(Color::from_hex(0xffffff)),
};