From 21dc5eb368da26fe077f407f052ebccaef838a63 Mon Sep 17 00:00:00 2001 From: "T. Hinrichsmeyer" <t.hinrichsmeyer@ndr.de> Date: Wed, 7 May 2025 22:40:37 +0200 Subject: [PATCH] ml4w-hyprland: add colors for waybar+rofi --- .../dot_config/rofi/colors.rasi | 48 ++++++++ .../dot_config/waybar/colors.css | 106 ++++++++++++++++++ .../dot_config/waybar/empty_colors.css | 0 3 files changed, 154 insertions(+) create mode 100644 home/dot_config/ml4w-custom-dotfiles/dot_config/rofi/colors.rasi create mode 100644 home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/colors.css delete mode 100644 home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/empty_colors.css diff --git a/home/dot_config/ml4w-custom-dotfiles/dot_config/rofi/colors.rasi b/home/dot_config/ml4w-custom-dotfiles/dot_config/rofi/colors.rasi new file mode 100644 index 0000000..2f162c5 --- /dev/null +++ b/home/dot_config/ml4w-custom-dotfiles/dot_config/rofi/colors.rasi @@ -0,0 +1,48 @@ +* { + background: rgba(28, 52, 57, 0.7); + primary: #82d3e2; + primary-fixed: #9fefff; + primary-fixed-dim: #82d3e2; + on-primary: #00363e; + on-primary-fixed: #001f24; + on-primary-fixed-variant: #004e59; + primary-container: #004e59; + on-primary-container: #9fefff; + secondary: #b1cbd1; + secondary-fixed: #cde7ed; + secondary-fixed-dim: #b1cbd1; + on-secondary: #1c3439; + on-secondary-fixed: #051f23; + on-secondary-fixed-variant: #334b4f; + secondary-container: #334b4f; + on-secondary-container: #cde7ed; + tertiary: #bbc5eb; + tertiary-fixed: #dbe1ff; + tertiary-fixed-dim: #bbc5eb; + on-tertiary: #252f4d; + on-tertiary-fixed: #101a37; + on-tertiary-fixed-variant: #3c4665; + tertiary-container: #3c4665; + on-tertiary-container: #dbe1ff; + error: #ffb4ab; + on-error: #690005; + error-container: #93000a; + on-error-container: #ffdad6; + surface: #0e1416; + on-surface: #dee3e5; + on-surface-variant: #bfc8ca; + outline: #899294; + outline-variant: #3f484a; + shadow: #000000; + scrim: #000000; + inverse-surface: #dee3e5; + inverse-on-surface: #2b3133; + inverse-primary: #006876; + surface-dim: #0e1416; + surface-bright: #343a3c; + surface-container-lowest: #090f10; + surface-container-low: #171d1e; + surface-container: #1b2122; + surface-container-high: #252b2c; + surface-container-highest: #303637; +} diff --git a/home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/colors.css b/home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/colors.css new file mode 100644 index 0000000..3ae6515 --- /dev/null +++ b/home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/colors.css @@ -0,0 +1,106 @@ +/* +* Css Colors +* Generated with Matugen +*/ +@define-color blur_background rgba(14, 20, 22, 0.3); +@define-color blur_background8 rgba(14, 20, 22, 0.8); + + @define-color background #0e1416; + + @define-color error #ffb4ab; + + @define-color error_container #93000a; + + @define-color inverse_on_surface #2b3133; + + @define-color inverse_primary #006876; + + @define-color inverse_surface #dee3e5; + + @define-color on_background #dee3e5; + + @define-color on_error #690005; + + @define-color on_error_container #ffdad6; + + @define-color on_primary #00363e; + + @define-color on_primary_container #9fefff; + + @define-color on_primary_fixed #001f24; + + @define-color on_primary_fixed_variant #004e59; + + @define-color on_secondary #1c3439; + + @define-color on_secondary_container #cde7ed; + + @define-color on_secondary_fixed #051f23; + + @define-color on_secondary_fixed_variant #334b4f; + + @define-color on_surface #dee3e5; + + @define-color on_surface_variant #bfc8ca; + + @define-color on_tertiary #252f4d; + + @define-color on_tertiary_container #dbe1ff; + + @define-color on_tertiary_fixed #101a37; + + @define-color on_tertiary_fixed_variant #3c4665; + + @define-color outline #899294; + + @define-color outline_variant #3f484a; + + @define-color primary #82d3e2; + + @define-color primary_container #004e59; + + @define-color primary_fixed #9fefff; + + @define-color primary_fixed_dim #82d3e2; + + @define-color scrim #000000; + + @define-color secondary #b1cbd1; + + @define-color secondary_container #334b4f; + + @define-color secondary_fixed #cde7ed; + + @define-color secondary_fixed_dim #b1cbd1; + + @define-color shadow #000000; + + @define-color source_color #213b40; + + @define-color surface #0e1416; + + @define-color surface_bright #343a3c; + + @define-color surface_container #1b2122; + + @define-color surface_container_high #252b2c; + + @define-color surface_container_highest #303637; + + @define-color surface_container_low #171d1e; + + @define-color surface_container_lowest #090f10; + + @define-color surface_dim #0e1416; + + @define-color surface_tint #82d3e2; + + @define-color surface_variant #3f484a; + + @define-color tertiary #bbc5eb; + + @define-color tertiary_container #3c4665; + + @define-color tertiary_fixed #dbe1ff; + + @define-color tertiary_fixed_dim #bbc5eb; diff --git a/home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/empty_colors.css b/home/dot_config/ml4w-custom-dotfiles/dot_config/waybar/empty_colors.css deleted file mode 100644 index e69de29..0000000 -- GitLab