use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("biogoo"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xd6d6d6),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x00007f)),
selection: Some(Color::from_hex(0x7f7f7f)),
line_highlight: Some(Color::from_hex(0xffffff)),
gutter: Some(Color::from_hex(0x303030)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x00007f)),
comment: Some(Color::from_hex(0x0000c3)),
keyword: Some(Color::from_hex(0x00007f)),
string: Some(Color::from_hex(0xd10000)),
function: Some(Color::from_hex(0x7f0000)),
variable: Some(Color::from_hex(0x004000)),
r#type: Some(Color::from_hex(0x540054)),
constant: Some(Color::from_hex(0x0000ff)),
operator: Some(Color::from_hex(0x00007f)),
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0x500000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0x500000)),
green: Some(Color::from_hex(0xd10000)),
cyan: Some(Color::from_hex(0x540054)),
blue: Some(Color::from_hex(0x7f0000)),
purple: Some(Color::from_hex(0x00007f)),
magenta: Some(Color::from_hex(0x0c3b6b)),
};