Introduce Serpensortia theme, enhance Hyprland scripts, and improve configuration modularity

This commit is contained in:
2026-02-17 22:18:10 +01:00
parent 8b153d54ac
commit a3c9ccbf6f
29 changed files with 1351 additions and 7 deletions
@@ -0,0 +1,36 @@
button {
background-color: #424a42;
color: #c0c0c0;
border: 1px solid #0b110b;
border-radius: 8px;
padding: 2px 4px;
transition: all 0.2s ease;
}
button:hover {
background-color: #0b110b;
}
button:active,
button:checked {
background-color: #1c7a44;
color: #080c08;
}
button:disabled {
background-color: #080c08;
color: #424a42;
border-color: #424a42;
}
button.suggested-action {
background-color: #1c7a44;
color: #080c08;
border-color: #1c7a44;
}
button.destructive-action {
background-color: #dc143c;
color: #080c08;
border-color: #dc143c;
}