use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("norwaytoday"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121e31),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffff00)),
selection: Some(Color::from_hex(0x685d9c)),
line_highlight: None,
gutter: Some(Color::from_hex(0xffffff)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x428bdd)),
keyword: Some(Color::from_hex(0xf8bb00)),
string: Some(Color::from_hex(0xe2ce00)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0xeddd3d)),
r#type: Some(Color::from_hex(0x8aa6c1)),
constant: Some(Color::from_hex(0xb53b3c)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: None,
green: Some(Color::from_hex(0xe2ce00)),
cyan: Some(Color::from_hex(0x8aa6c1)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0xf8bb00)),
magenta: None,
};