use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("koehler"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0x00ff00)),
selection: Some(Color::from_hex(0x666666)),
line_highlight: Some(Color::from_hex(0x555555)),
gutter: Some(Color::from_hex(0xffff00)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x0000ff)),
comment: Some(Color::from_hex(0x80a0ff)),
keyword: Some(Color::from_hex(0xffff60)),
string: Some(Color::from_hex(0xffa0a0)),
function: Some(Color::from_hex(0x40ffff)),
variable: Some(Color::from_hex(0x40ffff)),
r#type: Some(Color::from_hex(0x60ff60)),
constant: Some(Color::from_hex(0xffa0a0)),
operator: Some(Color::from_hex(0xffff60)),
tag: Some(Color::from_hex(0xffa500)),
error: Some(Color::from_hex(0xcd0000)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xcd0000)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xffa0a0)),
cyan: Some(Color::from_hex(0x60ff60)),
blue: Some(Color::from_hex(0x40ffff)),
purple: Some(Color::from_hex(0xffff60)),
magenta: Some(Color::from_hex(0xff80ff)),
};