use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("brighton"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x272822),
fg: Color::from_hex(0xf8f8f2),
cursor: Some(Color::from_hex(0xf8f8f0)),
selection: Some(Color::from_hex(0x49483e)),
line_highlight: Some(Color::from_hex(0x3c3d37)),
gutter: Some(Color::from_hex(0x90908a)),
statusbar_bg: Some(Color::from_hex(0x64645e)),
statusbar_fg: Some(Color::from_hex(0xf8f8f2)),
comment: Some(Color::from_hex(0x57746d)),
keyword: Some(Color::from_hex(0x4f73f7)),
string: Some(Color::from_hex(0x3fe132)),
function: Some(Color::from_hex(0x00e0e6)),
variable: Some(Color::from_hex(0x66d9ef)),
r#type: None,
constant: None,
operator: Some(Color::from_hex(0x4f73f7)),
tag: Some(Color::from_hex(0xf92672)),
error: Some(Color::from_hex(0xf8f8f0)),
warning: Some(Color::from_hex(0xf8f8f0)),
info: None,
success: None,
red: Some(Color::from_hex(0xf8f8f0)),
orange: None,
yellow: Some(Color::from_hex(0xf8f8f0)),
green: Some(Color::from_hex(0x3fe132)),
cyan: None,
blue: Some(Color::from_hex(0x00e0e6)),
purple: Some(Color::from_hex(0x4f73f7)),
magenta: Some(Color::from_hex(0x4f73f7)),
};