From 333d5d890ba37c9344e953e53bc4f168bdc23693 Mon Sep 17 00:00:00 2001 From: electria Date: Fri, 26 Jun 2026 10:00:53 -0700 Subject: [PATCH] refactor: replace qualified path with use --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5e369bc..3fb5db7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,7 @@ use iced::{ alignment::{Horizontal, Vertical}, color, event, keyboard::{self, Key, key}, - widget, + theme, widget, }; mod data; @@ -261,7 +261,7 @@ fn main() -> Result<(), iced::Error> { .subscription(State::subscription) .theme(Theme::custom( "custom", - iced::theme::Palette { + theme::Palette { background: color!(0x080808), text: Color::WHITE, primary: color!(0xff00ff),