use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("corporation"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x192224),
fg: Color::from_hex(0xf9f9ff),
cursor: Some(Color::from_hex(0xf9f9f9)),
selection: Some(Color::from_hex(0xf9f9ff)),
line_highlight: Some(Color::from_hex(0x222e30)),
gutter: Some(Color::from_hex(0xbd9800)),
statusbar_bg: Some(Color::from_hex(0xbd9800)),
statusbar_fg: Some(Color::from_hex(0x192224)),
comment: Some(Color::from_hex(0x5e6c70)),
keyword: Some(Color::from_hex(0xbd9800)),
string: Some(Color::from_hex(0xa1a6a8)),
function: Some(Color::from_hex(0x536991)),
variable: Some(Color::from_hex(0xbd9800)),
r#type: Some(Color::from_hex(0x536991)),
constant: Some(Color::from_hex(0xa1a6a8)),
operator: Some(Color::from_hex(0xbd9800)),
tag: Some(Color::from_hex(0xbd9800)),
error: Some(Color::from_hex(0xa1a6a8)),
warning: Some(Color::from_hex(0xa1a6a8)),
info: None,
success: None,
red: Some(Color::from_hex(0xa1a6a8)),
orange: None,
yellow: Some(Color::from_hex(0xa1a6a8)),
green: Some(Color::from_hex(0xa1a6a8)),
cyan: Some(Color::from_hex(0x536991)),
blue: Some(Color::from_hex(0x536991)),
purple: Some(Color::from_hex(0xbd9800)),
magenta: Some(Color::from_hex(0xbd9800)),
};