Skip to content

Commit

Permalink
working theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Redhawk18 committed Jul 15, 2023
1 parent 6508f6b commit ffcca80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/gui/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::path::PathBuf;

use iced::widget::button;
use iced::widget::text_input;
use iced::widget::Column;
use iced::{Application, Command, Subscription};
Expand Down
4 changes: 2 additions & 2 deletions src/gui/theme.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use iced::widget::{button, text, text_input};
use iced::{application, color, Color, Background};
use iced_aw::menu;
use iced_aw::style::tab_bar; //lib bug
use iced_aw::style::tab_bar; //FIXME https:/iced-rs/iced_aw/issues/151


pub type Renderer = iced::Renderer<Theme>;
Expand All @@ -19,7 +19,7 @@ impl application::StyleSheet for Theme {

fn appearance(&self, _style: &Self::Style) -> application::Appearance {
application::Appearance {
background_color: color!(0, 0, 0),
background_color: color!(255, 255, 255),
text_color: color!(150, 150, 150),
}
}
Expand Down

0 comments on commit ffcca80

Please sign in to comment.