use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("vulcan"),
author: Cow::Borrowed("Andrey Varfolomeev"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x041523),
fg: Color::from_hex(0x5b778c),
cursor: Some(Color::from_hex(0x5b778c)),
selection: Some(Color::from_hex(0x003552)),
line_highlight: Some(Color::from_hex(0x122339)),
gutter: Some(Color::from_hex(0x7a5759)),
statusbar_bg: Some(Color::from_hex(0x122339)),
statusbar_fg: Some(Color::from_hex(0x6b6977)),
comment: Some(Color::from_hex(0x7a5759)),
keyword: Some(Color::from_hex(0x9198a3)),
string: Some(Color::from_hex(0x977d7c)),
function: Some(Color::from_hex(0x977d7c)),
variable: Some(Color::from_hex(0x818591)),
r#type: Some(Color::from_hex(0xadb4b9)),
constant: Some(Color::from_hex(0x9198a3)),
operator: Some(Color::from_hex(0x5b778c)),
tag: Some(Color::from_hex(0x818591)),
error: Some(Color::from_hex(0x818591)),
warning: Some(Color::from_hex(0xadb4b9)),
info: Some(Color::from_hex(0x977d7c)),
success: Some(Color::from_hex(0x977d7c)),
red: Some(Color::from_hex(0x818591)),
orange: Some(Color::from_hex(0x9198a3)),
yellow: Some(Color::from_hex(0xadb4b9)),
green: Some(Color::from_hex(0x977d7c)),
cyan: Some(Color::from_hex(0x977d7c)),
blue: Some(Color::from_hex(0x977d7c)),
purple: Some(Color::from_hex(0x9198a3)),
magenta: Some(Color::from_hex(0x977d7c)),
};