use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Windows NT"),
author: Cow::Borrowed("Fergus Collins (https://github.com/ferguscollins)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xc0c0c0),
cursor: Some(Color::from_hex(0xc0c0c0)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x2a2a2a)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x2a2a2a)),
statusbar_fg: Some(Color::from_hex(0xa1a1a1)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xff00ff)),
string: Some(Color::from_hex(0x00ff00)),
function: Some(Color::from_hex(0x0000ff)),
variable: Some(Color::from_hex(0xff0000)),
r#type: Some(Color::from_hex(0xffff00)),
constant: Some(Color::from_hex(0x808000)),
operator: Some(Color::from_hex(0xc0c0c0)),
tag: Some(Color::from_hex(0xff0000)),
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xffff00)),
info: Some(Color::from_hex(0x0000ff)),
success: Some(Color::from_hex(0x00ff00)),
red: Some(Color::from_hex(0xff0000)),
orange: Some(Color::from_hex(0x808000)),
yellow: Some(Color::from_hex(0xffff00)),
green: Some(Color::from_hex(0x00ff00)),
cyan: Some(Color::from_hex(0x00ffff)),
blue: Some(Color::from_hex(0x0000ff)),
purple: Some(Color::from_hex(0xff00ff)),
magenta: Some(Color::from_hex(0x008000)),
};