Fix display for dark theme

This commit is contained in:
daleclack 2022-11-13 16:24:41 +08:00
parent a120413071
commit 9fbfdfa51c
2 changed files with 8 additions and 4 deletions

View File

@ -8,15 +8,15 @@
@import url("resource://org/gtk/daleclack/reset.css");
box{
background-color:alpha(white,0.3);
background-color:alpha(gray,0.3);
}
separator{
background-color:alpha(white,0.3);
background-color:alpha(gray,0.3);
}
button{
color:white;
color:gray;
}
grid{

View File

@ -8,5 +8,9 @@
@import url("resource://org/gtk/daleclack/reset.css");
box{
background-color:alpha(white,0.7);
background-color:alpha(gray,0.7);
}
label{
color:black;
}