use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("newspaper"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xdbdbd2),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x0a7383)),
line_highlight: Some(Color::from_hex(0xa4a061)),
gutter: Some(Color::from_hex(0x666677)),
statusbar_bg: Some(Color::from_hex(0x557788)),
statusbar_fg: Some(Color::from_hex(0xfffeee)),
comment: Some(Color::from_hex(0x4e5968)),
keyword: Some(Color::from_hex(0x2c4869)),
string: Some(Color::from_hex(0x1e5432)),
function: Some(Color::from_hex(0x590b33)),
variable: Some(Color::from_hex(0x7e473a)),
r#type: Some(Color::from_hex(0x4d69a7)),
constant: Some(Color::from_hex(0x881a1a)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xa22727)),
warning: Some(Color::from_hex(0x883629)),
info: None,
success: None,
red: Some(Color::from_hex(0xa22727)),
orange: None,
yellow: Some(Color::from_hex(0x883629)),
green: Some(Color::from_hex(0x1e5432)),
cyan: Some(Color::from_hex(0x4d69a7)),
blue: Some(Color::from_hex(0x590b33)),
purple: Some(Color::from_hex(0x2c4869)),
magenta: Some(Color::from_hex(0x2e3081)),
};