use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("revolutions"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0x9bcfb5),
cursor: Some(Color::from_hex(0xe6fff3)),
selection: Some(Color::from_hex(0x61a181)),
line_highlight: None,
gutter: Some(Color::from_hex(0x9bcfb5)),
statusbar_bg: Some(Color::from_hex(0x61a181)),
statusbar_fg: Some(Color::from_hex(0xe6fff3)),
comment: Some(Color::from_hex(0x43705a)),
keyword: Some(Color::from_hex(0xe6fff3)),
string: Some(Color::from_hex(0xe6fff3)),
function: Some(Color::from_hex(0xe6fff3)),
variable: Some(Color::from_hex(0xe6fff3)),
r#type: Some(Color::from_hex(0xe6fff3)),
constant: Some(Color::from_hex(0xe6fff3)),
operator: Some(Color::from_hex(0xe6fff3)),
tag: Some(Color::from_hex(0x61a181)),
error: Some(Color::from_hex(0xe6fff3)),
warning: Some(Color::from_hex(0x1d3026)),
info: None,
success: None,
red: Some(Color::from_hex(0xe6fff3)),
orange: None,
yellow: Some(Color::from_hex(0x1d3026)),
green: Some(Color::from_hex(0xe6fff3)),
cyan: Some(Color::from_hex(0xe6fff3)),
blue: Some(Color::from_hex(0xe6fff3)),
purple: Some(Color::from_hex(0xe6fff3)),
magenta: Some(Color::from_hex(0x61a181)),
};