use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("fahrenheit"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xd75f00)),
selection: Some(Color::from_hex(0xffaf5f)),
line_highlight: Some(Color::from_hex(0x262626)),
gutter: Some(Color::from_hex(0xaf875f)),
statusbar_bg: None,
statusbar_fg: Some(Color::from_hex(0xd7875f)),
comment: Some(Color::from_hex(0x875f5f)),
keyword: Some(Color::from_hex(0xd75f00)),
string: Some(Color::from_hex(0xd7af87)),
function: Some(Color::from_hex(0xffd787)),
variable: Some(Color::from_hex(0xa8a8a8)),
r#type: Some(Color::from_hex(0xffd7af)),
constant: Some(Color::from_hex(0xffffff)),
operator: Some(Color::from_hex(0xd7875f)),
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffd75f)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffd75f)),
green: Some(Color::from_hex(0xd7af87)),
cyan: Some(Color::from_hex(0xffd7af)),
blue: Some(Color::from_hex(0xffd787)),
purple: Some(Color::from_hex(0xd75f00)),
magenta: Some(Color::from_hex(0xffaf5f)),
};