ArchRice/eww/styles.yuck
2025-05-11 18:14:02 +02:00

23 lines
385 B
Plaintext

(style
".menu" {
background: @ayu-bg;
color: @ayu-fg;
padding: 10px;
border-radius: 8px;
border: 2px solid @ayu-accent;
transition: all 0.3s ease-in-out;
}
"button" {
background: transparent;
padding: 8px 12px;
margin: 4px 0;
border: none;
font-family: "Iosevka SS14";
font-size: 14px;
}
"button:hover" {
background: @ayu-dim;
color: @ayu-accent;
}
)