use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Gigavolt"),
author: Cow::Borrowed("Aidan Swope (http://github.com/Whillikers)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x202126),
fg: Color::from_hex(0xe9e7e1),
cursor: Some(Color::from_hex(0xe9e7e1)),
selection: Some(Color::from_hex(0x5a576e)),
line_highlight: Some(Color::from_hex(0x2d303d)),
gutter: Some(Color::from_hex(0xa1d2e6)),
statusbar_bg: Some(Color::from_hex(0x2d303d)),
statusbar_fg: Some(Color::from_hex(0xcad3ff)),
comment: Some(Color::from_hex(0xa1d2e6)),
keyword: Some(Color::from_hex(0xae94f9)),
string: Some(Color::from_hex(0xf2e6a9)),
function: Some(Color::from_hex(0x40bfff)),
variable: Some(Color::from_hex(0xff661a)),
r#type: Some(Color::from_hex(0xffdc2d)),
constant: Some(Color::from_hex(0x19f988)),
operator: Some(Color::from_hex(0xe9e7e1)),
tag: Some(Color::from_hex(0xff661a)),
error: Some(Color::from_hex(0xff661a)),
warning: Some(Color::from_hex(0xffdc2d)),
info: Some(Color::from_hex(0x40bfff)),
success: Some(Color::from_hex(0xf2e6a9)),
red: Some(Color::from_hex(0xff661a)),
orange: Some(Color::from_hex(0x19f988)),
yellow: Some(Color::from_hex(0xffdc2d)),
green: Some(Color::from_hex(0xf2e6a9)),
cyan: Some(Color::from_hex(0xfb6acb)),
blue: Some(Color::from_hex(0x40bfff)),
purple: Some(Color::from_hex(0xae94f9)),
magenta: Some(Color::from_hex(0x6187ff)),
};