use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Gotham"),
author: Cow::Borrowed("Andrea Leopardi (arranged by Brett Jones)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x0c1014),
fg: Color::from_hex(0x599cab),
cursor: Some(Color::from_hex(0x599cab)),
selection: Some(Color::from_hex(0x091f2e)),
line_highlight: Some(Color::from_hex(0x11151c)),
gutter: Some(Color::from_hex(0x0a3749)),
statusbar_bg: Some(Color::from_hex(0x11151c)),
statusbar_fg: Some(Color::from_hex(0x245361)),
comment: Some(Color::from_hex(0x0a3749)),
keyword: Some(Color::from_hex(0x888ca6)),
string: Some(Color::from_hex(0x33859e)),
function: Some(Color::from_hex(0x195466)),
variable: Some(Color::from_hex(0xc23127)),
r#type: Some(Color::from_hex(0xedb443)),
constant: Some(Color::from_hex(0xd26937)),
operator: Some(Color::from_hex(0x599cab)),
tag: Some(Color::from_hex(0xc23127)),
error: Some(Color::from_hex(0xc23127)),
warning: Some(Color::from_hex(0xedb443)),
info: Some(Color::from_hex(0x195466)),
success: Some(Color::from_hex(0x33859e)),
red: Some(Color::from_hex(0xc23127)),
orange: Some(Color::from_hex(0xd26937)),
yellow: Some(Color::from_hex(0xedb443)),
green: Some(Color::from_hex(0x33859e)),
cyan: Some(Color::from_hex(0x2aa889)),
blue: Some(Color::from_hex(0x195466)),
purple: Some(Color::from_hex(0x888ca6)),
magenta: Some(Color::from_hex(0x4e5166)),
};