use a better theme by default

This commit is contained in:
Cadey Ratio 2020-07-27 16:05:22 -04:00
parent 2bc7a56e60
commit 37a9a1347c
1 changed files with 12 additions and 8 deletions

View File

@ -1,7 +1,7 @@
use cursive::{
event::Key,
menu::MenuTree,
theme::{Effect, Style, Color, PaletteColor, Theme},
theme::{BaseColor, BorderStyle, Color, Effect, PaletteColor, Style, Theme},
traits::*,
utils::markup::StyledString,
views::{Dialog, EditView, Panel, ResizedView, TextView},
@ -38,9 +38,8 @@ fn main() {
env!("CARGO_PKG_AUTHORS"),
)));
})
.leaf("Help", move |s| {
help(s);
}),
.leaf("Help", help)
.leaf("Quit", cursive::Cursive::quit),
)
.add_leaf("Open", |s| open_prompt(s));
@ -170,10 +169,9 @@ fn render_gemini(body: &str) -> StyledString {
Text(line) => styled.append(StyledString::plain(line)),
Link { to, name } => match name {
None => styled.append(StyledString::styled(to, Style::from(Effect::Underline))),
Some(name) => styled.append(StyledString::styled(
format!("{}: {}", to, name),
Style::from(Effect::Underline),
)),
Some(name) => {
styled.append(StyledString::styled(name, Style::from(Effect::Underline)))
}
},
Preformatted(data) => styled.append(StyledString::plain(data)),
Heading { level: _, body } => {
@ -193,6 +191,12 @@ fn custom_theme_from_cursive(siv: &Cursive) -> Theme {
let mut theme = siv.current_theme().clone();
theme.palette[PaletteColor::Background] = Color::TerminalDefault;
theme.palette[PaletteColor::View] = Color::TerminalDefault;
theme.palette[PaletteColor::Primary] = Color::Dark(BaseColor::White);
theme.palette[PaletteColor::TitlePrimary] = Color::Light(BaseColor::White);
theme.shadow = false;
theme.borders = BorderStyle::Simple;
theme
}