Files
nixos/Droidnix/assets/system/conf/wofi/theming.css
T
2026-03-11 15:33:03 +01:00

70 lines
1.3 KiB
CSS

/* Catppuccin Mocha theme for Wofi */
@define-color base #1E1E2E;
@define-color surface0 #313244;
@define-color surface1 #45475A;
@define-color surface2 #585B70;
@define-color text #CDD6F4;
@define-color lavender #B4BEFE;
@define-color blue #89B4FA;
@define-color sapphire #74C7EC;
@define-color teal #94E2D5;
@define-color green #A6E3A1;
@define-color yellow #F9E2AF;
@define-color peach #FAB387;
@define-color maroon #EBA0AC;
@define-color red #F38BA8;
@define-color mauve #CBA6F7;
@define-color pink #F5C2E7;
@define-color flamingo #F2CDCD;
@define-color rosewater #F5E0DC;
* {
background-color: @base;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
#main {
border: 1px solid @surface0;
border-radius: 10px;
padding: 20px;
}
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 5px;
padding: 5px 10px;
margin-bottom: 10px;
}
#entry {
background-color: @surface0;
color: @text;
border-radius: 5px;
padding: 5px 10px;
}
#entry:focus {
background-color: @surface1;
color: @lavender;
}
#entry:selected {
background-color: @surface2;
color: @text;
}
#scrollbar {
background-color: @surface0;
border-radius: 5px;
}
#scrollbar.handle {
background-color: @blue;
border-radius: 5px;
}