use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Linux VT"),
author: Cow::Borrowed("j-c-m (https://github.com/j-c-m/)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xaaaaaa),
cursor: Some(Color::from_hex(0xaaaaaa)),
selection: Some(Color::from_hex(0x444444)),
line_highlight: Some(Color::from_hex(0x333333)),
gutter: Some(Color::from_hex(0x555555)),
statusbar_bg: Some(Color::from_hex(0x333333)),
statusbar_fg: Some(Color::from_hex(0x888888)),
comment: Some(Color::from_hex(0x555555)),
keyword: Some(Color::from_hex(0xff55ff)),
string: Some(Color::from_hex(0x00aa00)),
function: Some(Color::from_hex(0x5555ff)),
variable: Some(Color::from_hex(0xaa0000)),
r#type: Some(Color::from_hex(0xffff55)),
constant: Some(Color::from_hex(0xff5555)),
operator: Some(Color::from_hex(0xaaaaaa)),
tag: Some(Color::from_hex(0xaa0000)),
error: Some(Color::from_hex(0xaa0000)),
warning: Some(Color::from_hex(0xffff55)),
info: Some(Color::from_hex(0x5555ff)),
success: Some(Color::from_hex(0x00aa00)),
red: Some(Color::from_hex(0xaa0000)),
orange: Some(Color::from_hex(0xff5555)),
yellow: Some(Color::from_hex(0xffff55)),
green: Some(Color::from_hex(0x00aa00)),
cyan: Some(Color::from_hex(0x00aaaa)),
blue: Some(Color::from_hex(0x5555ff)),
purple: Some(Color::from_hex(0xff55ff)),
magenta: Some(Color::from_hex(0xaa5500)),
};