working on wofi

This commit is contained in:
2026-03-11 15:35:54 +01:00
parent e067487594
commit f33211449f
2 changed files with 19 additions and 12 deletions
+16 -10
View File
@@ -1,7 +1,7 @@
/* Catppuccin Mocha theme for Wofi */ /* Catppuccin Mocha theme for Wofi with transparency and rounded corners */
@define-color base #1E1E2E; @define-color base rgba(30, 30, 46, 0.9); /* Added transparency */
@define-color surface0 #313244; @define-color surface0 rgba(49, 50, 68, 0.95); /* Added transparency */
@define-color surface1 #45475A; @define-color surface1 #45475A;
@define-color surface2 #585B70; @define-color surface2 #585B70;
@define-color text #CDD6F4; @define-color text #CDD6F4;
@@ -20,50 +20,56 @@
@define-color rosewater #F5E0DC; @define-color rosewater #F5E0DC;
* { * {
background-color: @base; background-color: transparent;
color: @text; color: @text;
font-family: "JetBrainsMono Nerd Font", monospace; font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt; font-size: 12pt;
} }
#main { #main {
background-color: @base;
border: 1px solid @surface0; border: 1px solid @surface0;
border-radius: 10px; border-radius: 10px; /* Rounded corners */
padding: 20px; padding: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
} }
#input { #input {
background-color: @surface0; background-color: @surface0;
color: @text; color: @text;
border: 1px solid @surface1; border: 1px solid @surface1;
border-radius: 5px; border-radius: 10px; /* Rounded corners */
padding: 5px 10px; padding: 5px 10px;
margin-bottom: 10px; margin-bottom: 10px;
} }
#entry { #entry {
background-color: @surface0; background-color: transparent;
color: @text; color: @text;
border-radius: 5px; border-radius: 10px; /* Rounded corners */
padding: 5px 10px; padding: 5px 10px;
margin: 2px 0;
} }
#entry:focus { #entry:focus {
background-color: @surface1; background-color: @surface1;
color: @lavender; color: @lavender;
border-radius: 10px; /* Rounded corners */
} }
#entry:selected { #entry:selected {
background-color: @surface2; background-color: @surface2;
color: @text; color: @text;
border-radius: 10px; /* Rounded corners */
} }
#scrollbar { #scrollbar {
background-color: @surface0; background-color: @surface0;
border-radius: 5px; border-radius: 10px; /* Rounded corners */
width: 8px;
} }
#scrollbar.handle { #scrollbar.handle {
background-color: @blue; background-color: @blue;
border-radius: 5px; border-radius: 10px; /* Rounded corners */
} }
+3 -2
View File
@@ -11,8 +11,9 @@ show_power = false
width = 800 width = 800
height = 600 height = 600
x = center # Center on the active monitor
y = center x = 50%
y = 50%
lines = 10 lines = 10
columns = 1 columns = 1