Author: Kyle Fuller <kyle@fuller.li> 2021-05-15 18:15:19 +0100 +0100
Committer: Kyle Fuller <kyle@fuller.li> 2021-05-15 18:15:19 +0100 +0100
Commit: ff0c545657c89fdd23611da2e479d8a089d98eb4
Parent: a890e89ba07200f72e27ed5fadf136b391a7eb0d
feat(ui): switch to a new colour palette
diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc
index 010acb4f4e7030d633f30042053d1407c5c8cd4f..cfddea8ffc452c5f38fd2b083bd091e0cf181129 100755
--- a/.config/bspwm/bspwmrc
+++ b/.config/bspwm/bspwmrc
@@ -6,12 +6,13 @@ pgrep -x polybar > /dev/null || polybar top &
bspc monitor -d I II III IV V VI VII VIII IX X
-bspc config border_width 2
-bspc config window_gap 12
+bspc config border_width 4
+bspc config window_gap 40
+bspc config top_padding 10
bspc config split_ratio 0.50
bspc config borderless_monocle true
bspc config gapless_monocle true
-bspc config normal_border_color "#111111"
-bspc config focused_border_color "#919191"
+bspc config normal_border_color "#130A20"
+bspc config focused_border_color "#D0996E"
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
index faced773380ca4af021250633d771bc69497717f..6b5a125b8ba5ef75e68c547a4d1d8b71795f26a3 100644
--- a/.config/dunst/dunstrc
+++ b/.config/dunst/dunstrc
@@ -1,12 +1,13 @@
[global]
font = Source Code Pro 12
-geometry = "400x3-24+24"
+geometry = "400x3-24+40"
shrink = no
-transparency = 5
+transparency = 1
line_height = 0
padding = 8
horizontal_padding = 8
-separator_height = 5
+separator_height = 20
+separator_color = frame
allow_markup = yes
format = "<b>%s</b>\n%b\n%p"
@@ -15,16 +16,16 @@ sort = yes
[frame]
width = 0
-color = "#ffa460"
+color = "#1C0D3500"
[urgency_critical]
-background = "#464d91"
+background = "#BD4151"
foreground = "#111111"
[urgency_normal]
-background = "#111111"
-foreground = "#dedede"
+background = "#D0996E"
+foreground = "#111111"
[urgency_low]
-background = "#111111"
+background = "#130C35"
foreground = "#dedede"
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf
index dcbbc22ea6c1d51bdd3a5fdc794ee70f607595b6..c080b97a527a372ae3b64f120c447bb57857cba0 100644
--- a/.config/kitty/kitty.conf
+++ b/.config/kitty/kitty.conf
@@ -8,10 +8,12 @@ window_margin_width 2
tab_bar_edge top
tab_bar_style separator
-tab_separator " "
-tab_title_template "{title} ({index})"
-active_tab_foreground #111
-active_tab_background #dedede
+tab_bar_margin_width 10
+tab_separator " "
+tab_title_template "{title}"
+active_tab_foreground #130A20
+active_tab_background #D0996E
+active_tab_font_style bold
inactive_tab_foreground #dedede
inactive_tab_background #111
inactive_tab_font_style normal
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf
index 0d7d3a8b6042f2ec37321ec22dad7493fbf02670..70fc1cd3f5980f7aa4b7c6bcf048c3abec115d49 100644
--- a/.config/picom/picom.conf
+++ b/.config/picom/picom.conf
@@ -1,9 +1,10 @@
backend = "xrender";
opacity-rule = [
- "100:class_g = 'kitty' && focused",
- "95:class_g = 'kitty' && !focused",
- "95:class_g = 'Rofi'"
+ "92:class_g = 'kitty' && focused",
+ "88:class_g = 'kitty' && !focused",
+ "95:class_g = 'Rofi'",
+ "98:class_g = 'firefox' && !focused",
];
vsync = true;
diff --git a/.config/polybar/config b/.config/polybar/config
index 2514acfaa56c03d32b909e0b33e7b1f8d49591ff..65122f720f1e68e3c280cbfb2c96e9debc617719 100644
--- a/.config/polybar/config
+++ b/.config/polybar/config
@@ -1,7 +1,10 @@
[colors]
background = #00282a36
-foreground = #dfdfdf
-primary = #ffb52a
+foreground = #fff
+foreground-alt = #fff
+primary = #d0996e
+secondary = #e60053
+alert = #993d61
[bar/top]
height = 32
@@ -10,7 +13,7 @@ modules-right = audio date
font-0 = Source Code Pro:style=Regular
font-1 = "Font Awesome 5 Free Solid:pixelsize=12"
-underline-size = 2
+underline-size = 4
underline-color = #eee
spacing = 1
@@ -32,12 +35,10 @@ [module/bspwm]
type = internal/bspwm
format = <label-state> <label-mode>
+inline-mode = true
label-focused-underline = ${colors.primary}
-
-label-focused-background = #222
-label-urgent-underline = #FFA0A0
-label-empty-foreground = #888
+label-urgent-underline = ${colors.alert}
label-focused-padding = 1
label-occupied-padding = 1
@@ -46,7 +47,7 @@ label-empty-padding = 1
label-focused = %index%
label-occupied = %index%
-label-empty = %index%
+label-empty =
label-urgent = %index%
[module/audio]
diff --git a/.config/rofi/themes/main.rasi b/.config/rofi/themes/main.rasi
index 78268393c0278bca07cb9108b369fc45cbe1464f..749b79df847103842866416a55c7de42fb124ab4 100644
--- a/.config/rofi/themes/main.rasi
+++ b/.config/rofi/themes/main.rasi
@@ -1,12 +1,13 @@
* {
background-color: #111111;
text-color: #dedede;
- border-color: #ffffff;
+ border-color: #D0996E;
spacing: 0;
}
window {
width: 1000px;
+ border: 5;
}
inputbar {
@@ -34,11 +35,12 @@ }
element {
padding: 16px;
+ margin: 0 10 0 10;
}
element selected {
- background-color: #464d91;
- text-color: #111111;
+ background-color: #993D61;
+ text-color: #fff;
}
/* vim: ft=css