use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Rotor"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf5f5dc),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0x008b8b)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x0000cd)),
keyword: Some(Color::from_hex(0x80a0ff)),
string: Some(Color::from_hex(0xff0000)),
function: Some(Color::from_hex(0x7b68ee)),
variable: Some(Color::from_hex(0xb8860b)),
r#type: Some(Color::from_hex(0x228b22)),
constant: Some(Color::from_hex(0x5f9ea0)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xff0000)),
cyan: Some(Color::from_hex(0x5f9ea0)),
blue: Some(Color::from_hex(0x7b68ee)),
purple: Some(Color::from_hex(0x80a0ff)),
magenta: Some(Color::from_hex(0xb8860b)),
};