This commit is contained in:
iFargle 2024-01-04 17:45:05 +09:00
parent 88983e4b44
commit f598930244

View file

@ -7,14 +7,14 @@
background-image: none; background-image: none;
} }
window { window {
background-color: ${config.lib.stylix.colors.base05}; background-color: "#${config.lib.stylix.colors.base05}";
} }
button { button {
color: ${config.lib.stylix.colors.base04}; color: "#${config.lib.stylix.colors.base04}";
font-size: 0px; font-size: 0px;
border-radius: 5000px; border-radius: 5000px;
margin: 25px; margin: 25px;
background-color: ${config.lib.stylix.colors.base01}; background-color: "#${config.lib.stylix.colors.base01}";
border-style: solid; border-style: solid;
border-width: 3px; border-width: 3px;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -23,7 +23,7 @@
} }
button:active, button:hover { button:active, button:hover {
background-color: ${config.lib.stylix.colors.base00}; background-color: "#${config.lib.stylix.colors.base00}";
outline-style: none; outline-style: none;
} }