feat: catppuccin accent color

This commit is contained in:
KoenDR06 2025-12-09 10:02:57 +01:00
parent 18b90d81c6
commit c4648c4a2c
5 changed files with 56 additions and 16 deletions

View file

@ -7,6 +7,7 @@
cfg = config.horseman.dots.wofi;
username = config.horseman.username;
colors = config.horseman.catppuccin.colors;
accent = config.horseman.catppuccin.accent;
in {
options = {
horseman.dots.wofi = {
@ -25,7 +26,7 @@ in {
window {
margin: 0px;
padding: 10px;
border: 3px solid ${colors.lavender};
border: 3px solid ${colors.${accent}};
border-radius: 10px;
background-color: ${builtins.replaceStrings ["rgb" ")"] ["rgba" ", 0.99)"] colors.base-rgb};
/* animation: slideIn 0.5s ease-in-out both; */
@ -82,7 +83,7 @@ in {
#input {
margin: 5px 20px;
padding: 10px;
border: 2px solid ${colors.lavender};
border: 2px solid ${colors.${accent}};
border-radius: 10px;
color: ${colors.text};
background-color: ${colors.base};
@ -112,7 +113,7 @@ in {
#entry arrow {
border: none;
color: ${colors.lavender};
color: ${colors.${accent}};
}
/* Selected Entry */
@ -122,7 +123,7 @@ in {
}
#entry:selected {
border: 1px solid ${colors.lavender};
border: 1px solid ${colors.${accent}};
border-radius: 10px;
}
@ -131,7 +132,7 @@ in {
}
#entry:drop(active) {
background-color: ${colors.lavender}!important;
background-color: ${colors.${accent}}!important;
}
'';
};