Regenerated

This commit is contained in:
2026-04-13 16:39:52 +02:00
parent c08214ebe4
commit 64c1393721
3 changed files with 474 additions and 440 deletions
+382 -371
View File
File diff suppressed because it is too large Load Diff
+46 -35
View File
@@ -4502,54 +4502,65 @@ This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never #+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
@import "~/.config/shared/Colors.css"; @import "~/.config/shared/Colors.css";
/* * {
@define-color blue #89b4fa; background-color: transparent;
@define-color green #a6e3a1; color: @text;
*/ font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
window { #main {
margin: 5px; background-color: @base;
border: 2px solid red; border: 1px solid @surface0;
background-color: red; border-radius: 10px; /* Rounded corners */
padding: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
} }
#input { #input {
margin: 5px; background-color: @surface0;
border: 2px solid blue; color: @text;
background-color: blue; border: 1px solid @surface1;
border-radius: 10px; /* Rounded corners */
padding: 5px 10px;
margin-bottom: 10px;
} }
#inner-box { #entry {
margin: 5px; background-color: rgba(
border: 2px solid yellow; 200,
background-color: yellow; 200,
200,
0.2
); /* very light grey, very transparent */
color: @text;
border-radius: 10px;
padding: 5px 10px;
margin: 2px 0;
} }
#outer-box { #entry:focus {
margin: 5px; background-color: @surface1;
border: 2px solid green; color: @lavender;
background-color: green; border-radius: 10px; /* Rounded corners */
}
#scroll {
margin: 5px;
border: 2px solid orange;
background-color: orange;
}
#text {
margin: 5px;
border: 2px solid cyan;
background-color: cyan;
} }
#entry:selected { #entry:selected {
background-color: rgba(0,0,0,0); background-color: @surface2;
} color: @text;
#text:selected { border-radius: 10px; /* Rounded corners */
background-color: red;
} }
#scrollbar {
background-color: @surface0;
border-radius: 10px; /* Rounded corners */
width: 8px;
}
#scrollbar.handle {
background-color: @blue;
border-radius: 10px; /* Rounded corners */
}
#+END_SRC #+END_SRC
+46 -34
View File
@@ -1,50 +1,62 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */ /* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
@import "~/.config/shared/Colors.css"; @import "~/.config/shared/Colors.css";
/* * {
@define-color blue #89b4fa; background-color: transparent;
@define-color green #a6e3a1; color: @text;
*/ font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
window { #main {
margin: 5px; background-color: @base;
border: 2px solid red; border: 1px solid @surface0;
background-color: red; border-radius: 10px; /* Rounded corners */
padding: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
} }
#input { #input {
margin: 5px; background-color: @surface0;
border: 2px solid blue; color: @text;
background-color: blue; border: 1px solid @surface1;
border-radius: 10px; /* Rounded corners */
padding: 5px 10px;
margin-bottom: 10px;
} }
#inner-box { #entry {
margin: 5px; background-color: rgba(
border: 2px solid yellow; 200,
background-color: yellow; 200,
200,
0.2
); /* very light grey, very transparent */
color: @text;
border-radius: 10px;
padding: 5px 10px;
margin: 2px 0;
} }
#outer-box { #entry:focus {
margin: 5px; background-color: @surface1;
border: 2px solid green; color: @lavender;
background-color: green; border-radius: 10px; /* Rounded corners */
}
#scroll {
margin: 5px;
border: 2px solid orange;
background-color: orange;
}
#text {
margin: 5px;
border: 2px solid cyan;
background-color: cyan;
} }
#entry:selected { #entry:selected {
background-color: rgba(0,0,0,0); background-color: @surface2;
color: @text;
border-radius: 10px; /* Rounded corners */
} }
#text:selected {
background-color: red; #scrollbar {
background-color: @surface0;
border-radius: 10px; /* Rounded corners */
width: 8px;
}
#scrollbar.handle {
background-color: @blue;
border-radius: 10px; /* Rounded corners */
} }