File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,13 @@ pub fn primary_background_hover(theme: &Theme) -> Style {
100100 }
101101}
102102
103+ pub fn root ( theme : & Theme ) -> Style {
104+ Style {
105+ text_color : Some ( theme. styles ( ) . text . primary . color ) ,
106+ ..Default :: default ( )
107+ }
108+ }
109+
103110pub fn general ( theme : & Theme ) -> Style {
104111 Style {
105112 background : Some ( Background :: Color ( theme. styles ( ) . general . background ) ) ,
Original file line number Diff line number Diff line change @@ -1498,7 +1498,7 @@ impl Halloy {
14981498 container ( screen)
14991499 . width ( Length :: Fill )
15001500 . height ( Length :: Fill )
1501- . style ( theme:: container:: general ) ,
1501+ . style ( theme:: container:: root ) ,
15021502 )
15031503 . padding ( padding:: top ( platform_specific_padding) ) ;
15041504
You can’t perform that action at this time.
0 commit comments