use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Gruvbox dark"),
author: Cow::Borrowed(
"Tinted Theming (https://github.com/tinted-theming), morhetz (https://github.com/morhetz/gruvbox)",
),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x282828),
fg: Color::from_hex(0xebdbb2),
cursor: Some(Color::from_hex(0xebdbb2)),
selection: Some(Color::from_hex(0x504945)),
line_highlight: Some(Color::from_hex(0x3c3836)),
gutter: Some(Color::from_hex(0x665c54)),
statusbar_bg: Some(Color::from_hex(0x3c3836)),
statusbar_fg: Some(Color::from_hex(0x928374)),
comment: Some(Color::from_hex(0x665c54)),
keyword: Some(Color::from_hex(0xb16286)),
string: Some(Color::from_hex(0x98971a)),
function: Some(Color::from_hex(0x458588)),
variable: Some(Color::from_hex(0xcc241d)),
r#type: Some(Color::from_hex(0xd79921)),
constant: Some(Color::from_hex(0xd65d0e)),
operator: Some(Color::from_hex(0xebdbb2)),
tag: Some(Color::from_hex(0xcc241d)),
error: Some(Color::from_hex(0xcc241d)),
warning: Some(Color::from_hex(0xd79921)),
info: Some(Color::from_hex(0x458588)),
success: Some(Color::from_hex(0x98971a)),
red: Some(Color::from_hex(0xcc241d)),
orange: Some(Color::from_hex(0xd65d0e)),
yellow: Some(Color::from_hex(0xd79921)),
green: Some(Color::from_hex(0x98971a)),
cyan: Some(Color::from_hex(0x689d6a)),
blue: Some(Color::from_hex(0x458588)),
purple: Some(Color::from_hex(0xb16286)),
magenta: Some(Color::from_hex(0x9d0006)),
};