diff --git a/src/app/mod.rs b/src/app/mod.rs index 0b1f4cd..ca810f3 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -150,7 +150,7 @@ impl State { "main", widget::operation::AbsoluteOffset { x: 0., - y: if modifiers.shift() { 500. } else { 100. }, + y: if modifiers.shift() { 100. } else { 30. }, }, ); } @@ -162,7 +162,7 @@ impl State { "main", widget::operation::AbsoluteOffset { x: 0., - y: if modifiers.shift() { -500. } else { -100. }, + y: if modifiers.shift() { -100. } else { -30. }, }, ); } @@ -265,7 +265,7 @@ pub fn run() -> Result<(), impl std::error::Error> { .theme(theme::Theme::custom( "high-contrast-dark", theme::Palette { - background: Color::BLACK, + background: Color::from_rgb8(10, 10, 10), text: Color::WHITE, ..theme::Palette::DARK },