Compare commits

..
Author SHA1 Message Date
d925059ef4
feat: increase scroll keybind speed 2026-08-10 12:27:51 -07:00
65c93960d4
feat: black background
unfortunately this means no hover feedback from buttons
2026-08-10 12:26:21 -07:00

View file

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