From d7ff1c1dea16619a38f35536a5c00685d848abce Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 10 May 2024 02:03:31 +0900 Subject: Initial Push - Moving to Wallust from Pywal --- config/wallust/wallust.toml | 53 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 config/wallust/wallust.toml (limited to 'config/wallust/wallust.toml') diff --git a/config/wallust/wallust.toml b/config/wallust/wallust.toml new file mode 100644 index 00000000..4ed44e8b --- /dev/null +++ b/config/wallust/wallust.toml @@ -0,0 +1,53 @@ +# wallust 3.0 beta.* + +backend = "resized" +color_space = "lch" + +# NOTE: All filters will fill 16 colors (from color0 to color15), 16 color +# variations are the 'ilusion' of more colors by opaquing color1 to color5. +# Use the most prominent colors in a way that makes sense, a scheme: +# * dark - 8 dark colors, dark background and light contrast +# * dark16 - Same as `dark` but uses the 16 colors trick +# * harddark - Same as `dark` with hard hue colors +# * harddark16 - Harddark with 16 color variation +# * light - Light bg, dark fg +# * light16 - Same as `light` but uses the 16 color trick +# * softdark - Variant of softlight, uses the lightest colors and a dark +# background (could be interpreted as `dark` inversed) +# * softdark16 - softdark with 16 color variation +# * softlight - Light with soft pastel colors, counterpart of `harddark` +# * softlight16 - softlight with 16 color variation +palette = "dark16" + +# Difference between similar colors, used by the colorspace: +# 1 Not perceptible by human eyes. +# 1 - 2 Perceptible through close observation. +# 2 - 10 Perceptible at a glance. +# 11 - 49 Colors are more similar than opposite +# 100 Colors are exact opposite +threshold = 10 + +[templates] +cava.template = 'templates/colors-cava' +cava.target = '~/.config/cava/config' + +hypr.template = 'templates/colors-hyprland.conf' +hypr.target = '~/.config/hypr/wallust/wallust-hyprland.conf' + +rofi.template = 'templates/colors-rofi.rasi' +rofi.target = '~/.config/rofi/wallust/colors-rofi.rasi' + +swaync.template = 'templates/colors-swaync.css' +swaync.target = '~/.config/swaync/wallust/colors-wallust.css' + +waybar.template = 'templates/colors-waybar.css' +waybar.target = '~/.config/waybar/wallust/colors-waybar.css' + +#macchina.template = 'templates/colors-macchina.toml' +#macchina.target = '~/.config/macchina/themes/wallust.toml' + +#wezterm.template = 'templates/colors-wezterm.toml' +#wezterm.target = '~/.config/wezterm/colors/wallust.toml' + +#zathura.template = 'templates/colors-zathura' +#zathura.target = '~/.config/zathura/zathurarc' -- cgit v1.2.3 From e742b39139813b04706c30f097e0d9829ea7c776 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 10 May 2024 13:28:28 +0900 Subject: removal of templates for swaync since it is taking from waybar-colors anyway --- config/swaync/style.css | 2 +- config/swaync/wallust/colors-wallust.css | 9 --------- config/wallust/wallust.toml | 6 +++--- 3 files changed, 4 insertions(+), 13 deletions(-) delete mode 100644 config/swaync/wallust/colors-wallust.css (limited to 'config/wallust/wallust.toml') diff --git a/config/swaync/style.css b/config/swaync/style.css index 537b7d3c..4e6b4faf 100755 --- a/config/swaync/style.css +++ b/config/swaync/style.css @@ -3,7 +3,7 @@ @import '../../.config/waybar/wallust/colors-waybar.css'; -@define-color noti-border-color @color10; +@define-color noti-border-color @color12; @define-color noti-bg rgba(0, 0, 0, 0.8); @define-color noti-bg-alt #111111; @define-color noti-bg-hover @color2; diff --git a/config/swaync/wallust/colors-wallust.css b/config/swaync/wallust/colors-wallust.css deleted file mode 100644 index bc36eb3b..00000000 --- a/config/swaync/wallust/colors-wallust.css +++ /dev/null @@ -1,9 +0,0 @@ -@define-color text #E2FECE; -@define-color background rgba(1,1,2,0.25); -@define-color background-alt #010102; -@define-color cursor #E2FECE; -@define-color hovered #0AE59C; -@define-color button-background #81BC57; -@define-color button-active #9E2517; -@define-color border #776D19; -@define-color urgent #CDF5B1; diff --git a/config/wallust/wallust.toml b/config/wallust/wallust.toml index 4ed44e8b..086b3fef 100644 --- a/config/wallust/wallust.toml +++ b/config/wallust/wallust.toml @@ -37,12 +37,12 @@ hypr.target = '~/.config/hypr/wallust/wallust-hyprland.conf' rofi.template = 'templates/colors-rofi.rasi' rofi.target = '~/.config/rofi/wallust/colors-rofi.rasi' -swaync.template = 'templates/colors-swaync.css' -swaync.target = '~/.config/swaync/wallust/colors-wallust.css' - waybar.template = 'templates/colors-waybar.css' waybar.target = '~/.config/waybar/wallust/colors-waybar.css' +#swaync.template = 'templates/colors-swaync.css' +#swaync.target = '~/.config/swaync/wallust/colors-wallust.css' + #macchina.template = 'templates/colors-macchina.toml' #macchina.target = '~/.config/macchina/themes/wallust.toml' -- cgit v1.2.3