Regenerated
This commit is contained in:
+410
-332
File diff suppressed because it is too large
Load Diff
+64
-27
@@ -909,7 +909,7 @@ in
|
||||
force = true;
|
||||
};
|
||||
".config/wofi/style.css" = {
|
||||
text = builtins.readFile "${assetPath}/style.css";
|
||||
text = builtins.readFile builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css" + "\n" + builtins.readFile "${assetPath}/style.css";
|
||||
force = true;
|
||||
};
|
||||
};
|
||||
@@ -964,32 +964,26 @@ prompt = >
|
||||
** =.config/wofi/style.css=
|
||||
These are config files for .config/wofi
|
||||
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
|
||||
/* Catppuccin Mocha theme for Wofi with transparency and rounded corners */
|
||||
/* Catppuccin Mocha theme for Wofi with gradient borders and transparency */
|
||||
|
||||
/* === Catppuccin Mocha Palette === */
|
||||
|
||||
/* Background / Base */
|
||||
@define-color crust #11111b;
|
||||
@define-color mantle #181825;
|
||||
@define-color base #1e1e2e;
|
||||
@define-color base-alpha rgba(30, 30, 46, 0.9);
|
||||
|
||||
/* Surface */
|
||||
@define-color surface0 #313244;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface2 #585b70;
|
||||
|
||||
/* Overlays */
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay2 #9399b2;
|
||||
|
||||
/* Subtext & Text */
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color subtext1 #bac2de;
|
||||
@define-color text #cdd6f4;
|
||||
|
||||
/* Accents */
|
||||
@define-color rosewater #f5e0dc;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color pink #f5c2e7;
|
||||
@@ -1004,67 +998,73 @@ These are config files for .config/wofi
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
|
||||
* {
|
||||
/* Global styles */
|
||||
* {
|
||||
background-color: transparent;
|
||||
color: @text;
|
||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
/* Main menu container with gradient border */
|
||||
#main {
|
||||
background-color: @base;
|
||||
border: 1px solid @surface0;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
background:
|
||||
linear-gradient(@base-alpha, @base-alpha) padding-box, /* Inner fill */
|
||||
linear-gradient(45deg, @blue, @green) border-box; /* Gradient border */
|
||||
border: 2px solid transparent; /* Required for border-box layering */
|
||||
border-radius: 30px;
|
||||
padding: 20px;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Input field */
|
||||
#input {
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
border-radius: 30px;
|
||||
padding: 5px 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* Entries */
|
||||
#entry {
|
||||
background-color: rgba(
|
||||
200,
|
||||
200,
|
||||
200,
|
||||
0.2
|
||||
); /* very light grey, very transparent */
|
||||
background-color: rgba(200,200,200,0.2);
|
||||
color: @text;
|
||||
border-radius: 30px;
|
||||
padding: 5px 10px;
|
||||
margin: 2px 0;
|
||||
border: 2px solid transparent; /* needed for gradient on selection */
|
||||
}
|
||||
|
||||
/* Entry focus (hover or typing) */
|
||||
#entry:focus {
|
||||
background-color: @surface1;
|
||||
color: @lavender;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
background:
|
||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
color: @lavender;
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
/* Entry selection */
|
||||
#entry:selected {
|
||||
background-color: @surface2;
|
||||
background:
|
||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
color: @text;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
/* Scrollbar */
|
||||
#scrollbar {
|
||||
background-color: @surface0;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
border-radius: 30px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
#scrollbar.handle {
|
||||
background-color: @blue;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
border-radius: 30px;
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
@@ -2640,7 +2640,7 @@ in
|
||||
force = true;
|
||||
};
|
||||
".config/waybar/style.css" = {
|
||||
text = builtins.readFile "${assetPath}/style.css";
|
||||
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css" + "\n" + builtins.readFile "${assetPath}/style.css";
|
||||
force = true;
|
||||
};
|
||||
".config/waybar/scripts/bluetooth-status.sh" = {
|
||||
@@ -3649,3 +3649,40 @@ These are config files for .config/zed
|
||||
},
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
|
||||
** =~/.config/shared/colors.css=
|
||||
These are config files for .config/wofi
|
||||
#+BEGIN_SRC css :tangle generated/.config/shared/colors.css :noweb yes :mkdirp yes :eval never
|
||||
/* Catppuccin Mocha Palette */
|
||||
@define-color crust #11111b;
|
||||
@define-color mantle #181825;
|
||||
@define-color base #1e1e2e;
|
||||
@define-color base-alpha rgba(30, 30, 46, 0.9);
|
||||
|
||||
@define-color surface0 #313244;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface2 #585b70;
|
||||
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay2 #9399b2;
|
||||
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color subtext1 #bac2de;
|
||||
@define-color text #cdd6f4;
|
||||
|
||||
@define-color rosewater #f5e0dc;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color red #f38ba8;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color peach #fab387;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
#+END_SRC
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
/* Catppuccin Mocha Palette */
|
||||
@define-color crust #11111b;
|
||||
@define-color mantle #181825;
|
||||
@define-color base #1e1e2e;
|
||||
@define-color base-alpha rgba(30, 30, 46, 0.9);
|
||||
|
||||
@define-color surface0 #313244;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface2 #585b70;
|
||||
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay2 #9399b2;
|
||||
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color subtext1 #bac2de;
|
||||
@define-color text #cdd6f4;
|
||||
|
||||
@define-color rosewater #f5e0dc;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color red #f38ba8;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color peach #fab387;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
@@ -15,7 +15,7 @@ in
|
||||
force = true;
|
||||
};
|
||||
".config/wofi/style.css" = {
|
||||
text = builtins.readFile "${assetPath}/style.css";
|
||||
text = builtins.readFile builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css" + "\n" + builtins.readFile "${assetPath}/style.css";
|
||||
force = true;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -16,7 +16,7 @@ in
|
||||
force = true;
|
||||
};
|
||||
".config/waybar/style.css" = {
|
||||
text = builtins.readFile "${assetPath}/style.css";
|
||||
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css" + "\n" + builtins.readFile "${assetPath}/style.css";
|
||||
force = true;
|
||||
};
|
||||
".config/waybar/scripts/bluetooth-status.sh" = {
|
||||
|
||||
Reference in New Issue
Block a user