Regenerated
This commit is contained in:
+346
-322
File diff suppressed because it is too large
Load Diff
+50
-26
@@ -2867,18 +2867,51 @@ These are config files for waybar
|
||||
** =.config/waybar/style.css=
|
||||
This file contains all css for waybar
|
||||
#+BEGIN_SRC css :tangle generated/.config/waybar/style.css :noweb yes :mkdirp yes :eval never
|
||||
/* --- Hyprland palette --- */
|
||||
@define-color base rgba(30, 30, 46, 1.0);
|
||||
@define-color inactive rgba(89, 89, 89, 0.667);
|
||||
@define-color blue rgba(51, 204, 255, 0.933);
|
||||
@define-color green rgba(0, 255, 153, 0.933);
|
||||
/* === Catppuccin Mocha Palette === */
|
||||
|
||||
@define-color text rgba(255, 255, 255, 1.0);
|
||||
@define-color surface1 rgba(255, 255, 255, 0.08);
|
||||
@define-color subtext1 rgba(255, 255, 255, 0.35);
|
||||
@define-color red rgba(255, 0, 0, 0.90);
|
||||
@define-color overlay1 rgba(255, 255, 255, 0.35);
|
||||
@define-color yellow rgba(255, 215, 0, 0.95);
|
||||
/* Background / Base */
|
||||
@define-color mocha-crust #11111b;
|
||||
@define-color mocha-mantle #181825;
|
||||
@define-color mocha-base #1e1e2e;
|
||||
|
||||
/* Surface */
|
||||
@define-color mocha-surface0 #313244;
|
||||
@define-color mocha-surface1 #45475a;
|
||||
@define-color mocha-surface2 #585b70;
|
||||
|
||||
/* Overlays */
|
||||
@define-color mocha-overlay0 #6c7086;
|
||||
@define-color mocha-overlay1 #7f849c;
|
||||
@define-color mocha-overlay2 #9399b2;
|
||||
|
||||
/* Subtext & Text */
|
||||
@define-color mocha-subtext0 #a6adc8;
|
||||
@define-color mocha-subtext1 #bac2de;
|
||||
@define-color mocha-text #cdd6f4;
|
||||
|
||||
/* Accents */
|
||||
@define-color mocha-rosewater #f5e0dc;
|
||||
@define-color mocha-flamingo #f2cdcd;
|
||||
@define-color mocha-pink #f5c2e7;
|
||||
@define-color mocha-mauve #cba6f7;
|
||||
@define-color mocha-red #f38ba8;
|
||||
@define-color mocha-maroon #eba0ac;
|
||||
@define-color mocha-peach #fab387;
|
||||
@define-color mocha-yellow #f9e2af;
|
||||
@define-color mocha-green #a6e3a1;
|
||||
@define-color mocha-teal #94e2d5;
|
||||
@define-color mocha-sapphire #74c7ec;
|
||||
@define-color mocha-blue #89b4fa;
|
||||
@define-color mocha-lavender #b4befe;
|
||||
|
||||
/*
|
||||
|
||||
border:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
|
||||
*/
|
||||
|
||||
/* --- Global --- */
|
||||
* {
|
||||
@@ -2916,11 +2949,8 @@ window#waybar {
|
||||
min-width: 80px;
|
||||
border-radius: 10px;
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 1px linear-gradient(45deg, @blue, @green) border-box;
|
||||
background: transparent
|
||||
}
|
||||
|
||||
/* center expanded content */
|
||||
@@ -2946,11 +2976,8 @@ window#waybar {
|
||||
color: @text;
|
||||
border-radius: 10px;
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 1px linear-gradient(45deg, @blue, @green) border-box;
|
||||
background: transparent
|
||||
}
|
||||
|
||||
/* center expanded content */
|
||||
@@ -2976,11 +3003,8 @@ window#waybar {
|
||||
color: @text;
|
||||
border-radius: 10px;
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 1px linear-gradient(45deg, @blue, @green) border-box;
|
||||
background: transparent
|
||||
}
|
||||
|
||||
/* center expanded content */
|
||||
|
||||
@@ -1,15 +1,48 @@
|
||||
/* --- Hyprland palette --- */
|
||||
@define-color base rgba(30, 30, 46, 1.0);
|
||||
@define-color inactive rgba(89, 89, 89, 0.667);
|
||||
@define-color blue rgba(51, 204, 255, 0.933);
|
||||
@define-color green rgba(0, 255, 153, 0.933);
|
||||
/* === Catppuccin Mocha Palette === */
|
||||
|
||||
@define-color text rgba(255, 255, 255, 1.0);
|
||||
@define-color surface1 rgba(255, 255, 255, 0.08);
|
||||
@define-color subtext1 rgba(255, 255, 255, 0.35);
|
||||
@define-color red rgba(255, 0, 0, 0.90);
|
||||
@define-color overlay1 rgba(255, 255, 255, 0.35);
|
||||
@define-color yellow rgba(255, 215, 0, 0.95);
|
||||
/* Background / Base */
|
||||
@define-color mocha-crust #11111b;
|
||||
@define-color mocha-mantle #181825;
|
||||
@define-color mocha-base #1e1e2e;
|
||||
|
||||
/* Surface */
|
||||
@define-color mocha-surface0 #313244;
|
||||
@define-color mocha-surface1 #45475a;
|
||||
@define-color mocha-surface2 #585b70;
|
||||
|
||||
/* Overlays */
|
||||
@define-color mocha-overlay0 #6c7086;
|
||||
@define-color mocha-overlay1 #7f849c;
|
||||
@define-color mocha-overlay2 #9399b2;
|
||||
|
||||
/* Subtext & Text */
|
||||
@define-color mocha-subtext0 #a6adc8;
|
||||
@define-color mocha-subtext1 #bac2de;
|
||||
@define-color mocha-text #cdd6f4;
|
||||
|
||||
/* Accents */
|
||||
@define-color mocha-rosewater #f5e0dc;
|
||||
@define-color mocha-flamingo #f2cdcd;
|
||||
@define-color mocha-pink #f5c2e7;
|
||||
@define-color mocha-mauve #cba6f7;
|
||||
@define-color mocha-red #f38ba8;
|
||||
@define-color mocha-maroon #eba0ac;
|
||||
@define-color mocha-peach #fab387;
|
||||
@define-color mocha-yellow #f9e2af;
|
||||
@define-color mocha-green #a6e3a1;
|
||||
@define-color mocha-teal #94e2d5;
|
||||
@define-color mocha-sapphire #74c7ec;
|
||||
@define-color mocha-blue #89b4fa;
|
||||
@define-color mocha-lavender #b4befe;
|
||||
|
||||
/*
|
||||
|
||||
border:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
|
||||
*/
|
||||
|
||||
/* --- Global --- */
|
||||
* {
|
||||
@@ -47,11 +80,8 @@ window#waybar {
|
||||
min-width: 80px;
|
||||
border-radius: 10px;
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 1px linear-gradient(45deg, @blue, @green) border-box;
|
||||
background: transparent
|
||||
}
|
||||
|
||||
/* center expanded content */
|
||||
@@ -77,11 +107,8 @@ window#waybar {
|
||||
color: @text;
|
||||
border-radius: 10px;
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 1px linear-gradient(45deg, @blue, @green) border-box;
|
||||
background: transparent
|
||||
}
|
||||
|
||||
/* center expanded content */
|
||||
@@ -107,11 +134,8 @@ window#waybar {
|
||||
color: @text;
|
||||
border-radius: 10px;
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||||
padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 1px linear-gradient(45deg, @blue, @green) border-box;
|
||||
background: transparent
|
||||
}
|
||||
|
||||
/* center expanded content */
|
||||
|
||||
Reference in New Issue
Block a user