use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Bright"),
author: Cow::Borrowed("Chris Kempson (http://chriskempson.com)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xe0e0e0),
cursor: Some(Color::from_hex(0xe0e0e0)),
selection: Some(Color::from_hex(0x505050)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0xb0b0b0)),
statusbar_bg: Some(Color::from_hex(0x303030)),
statusbar_fg: Some(Color::from_hex(0xd0d0d0)),
comment: Some(Color::from_hex(0xb0b0b0)),
keyword: Some(Color::from_hex(0xd381c3)),
string: Some(Color::from_hex(0xa1c659)),
function: Some(Color::from_hex(0x6fb3d2)),
variable: Some(Color::from_hex(0xfb0120)),
r#type: Some(Color::from_hex(0xfda331)),
constant: Some(Color::from_hex(0xfc6d24)),
operator: Some(Color::from_hex(0xe0e0e0)),
tag: Some(Color::from_hex(0xfb0120)),
error: Some(Color::from_hex(0xfb0120)),
warning: Some(Color::from_hex(0xfda331)),
info: Some(Color::from_hex(0x6fb3d2)),
success: Some(Color::from_hex(0xa1c659)),
red: Some(Color::from_hex(0xfb0120)),
orange: Some(Color::from_hex(0xfc6d24)),
yellow: Some(Color::from_hex(0xfda331)),
green: Some(Color::from_hex(0xa1c659)),
cyan: Some(Color::from_hex(0x76c7b7)),
blue: Some(Color::from_hex(0x6fb3d2)),
purple: Some(Color::from_hex(0xd381c3)),
magenta: Some(Color::from_hex(0xbe643c)),
};