use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tokyo City Terminal Light"),
author: Cow::Borrowed("Michaël Ball"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xfbfbfd),
fg: Color::from_hex(0x28323a),
cursor: Some(Color::from_hex(0x28323a)),
selection: Some(Color::from_hex(0xd8e2ec)),
line_highlight: Some(Color::from_hex(0xf6f6f8)),
gutter: Some(Color::from_hex(0xb7c5d3)),
statusbar_bg: Some(Color::from_hex(0xf6f6f8)),
statusbar_fg: Some(Color::from_hex(0x526270)),
comment: Some(Color::from_hex(0xb7c5d3)),
keyword: Some(Color::from_hex(0x5a4a78)),
string: Some(Color::from_hex(0x33635c)),
function: Some(Color::from_hex(0x34548a)),
variable: Some(Color::from_hex(0x8c4351)),
r#type: Some(Color::from_hex(0x8f5e15)),
constant: Some(Color::from_hex(0x965027)),
operator: Some(Color::from_hex(0x28323a)),
tag: Some(Color::from_hex(0x8c4351)),
error: Some(Color::from_hex(0x8c4351)),
warning: Some(Color::from_hex(0x8f5e15)),
info: Some(Color::from_hex(0x34548a)),
success: Some(Color::from_hex(0x33635c)),
red: Some(Color::from_hex(0x8c4351)),
orange: Some(Color::from_hex(0x965027)),
yellow: Some(Color::from_hex(0x8f5e15)),
green: Some(Color::from_hex(0x33635c)),
cyan: Some(Color::from_hex(0x0f4b6e)),
blue: Some(Color::from_hex(0x34548a)),
purple: Some(Color::from_hex(0x5a4a78)),
magenta: Some(Color::from_hex(0x7e5140)),
};