use correct arc-darker colors in sway and waybar and rofi

This commit is contained in:
Johannes Loher 2020-09-16 21:26:46 +02:00
parent 5da3017b7a
commit b9da55606e
3 changed files with 34 additions and 32 deletions

View file

@ -5,13 +5,13 @@ configuration {
font: "Roboto Regular 14"; font: "Roboto Regular 14";
bw: 0; bw: 0;
location: 0; location: 0;
padding: 5; padding: 7.5;
terminal: "termite"; terminal: "termite";
matching: "normal"; matching: "fuzzy";
separator-style: "none"; separator-style: "none";
hide-scrollbar: true; hide-scrollbar: true;
color-normal: "#252936, #7780a1, #252936, #1f222d, #ffffff"; color-normal: "#383C4A, #D3DAE3, #383C4A, #5294e2, #FFFFFF";
color-urgent: "#252936, #ff5400, #252936, #1f222d, #ff5400"; color-urgent: "#383C4A, #F27835, #383C4A, #5294e2, #FFFFFF";
color-active: "#252936, #5ac8fa, #252936, #1f222d, #5ac8fa"; color-active: "#383C4A, #73d216, #383C4A, #5294e2, #5ac8fa";
color-window: "#1f222d, #1f222d, #7780a1"; color-window: "#2F343F, #2F343F, #D3DAE3";
} }

View file

@ -16,16 +16,13 @@ include config.local
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
set $mod Mod4 set $mod Mod4
set $color_bg_focused #1f222d set $color_bg_focused #2F343F
set $color_bg_unfocused #252936 set $color_bg_unfocused #383C4A
set $color_fg_unfocused #7780a1 set $color_fg_unfocused #D3DAE3
set $color_fg_focused #ffffff set $color_fg_focused #FFFFFF
set $color_indicator #fcc09e set $color_indicator #4DADD4
set $color_warn #F27835
set $color_red #ff5400 set $color_error #FC4138
set $color_yellow #ffd400
set $color_green #a8ff00
set $color_blue #5ac8fa
set $font Roboto Regular 14 set $font Roboto Regular 14
@ -262,13 +259,13 @@ bindsym control+Mod1+l exec --no-startup-id swaylock
client.focused $color_bg_focused $color_bg_focused $color_fg_focused $color_bg_focused client.focused $color_bg_focused $color_bg_focused $color_fg_focused $color_bg_focused
client.focused_inactive $color_bg_unfocused $color_bg_unfocused $color_fg_unfocused $color_bg_unfocused client.focused_inactive $color_bg_unfocused $color_bg_unfocused $color_fg_unfocused $color_bg_unfocused
client.unfocused $color_bg_unfocused $color_bg_unfocused $color_fg_unfocused $color_bg_unfocused client.unfocused $color_bg_unfocused $color_bg_unfocused $color_fg_unfocused $color_bg_unfocused
client.urgent $color_bg_unfocused $color_red $color_fg_focused $color_bg_unfocused client.urgent $color_bg_unfocused $color_warn $color_fg_focused $color_bg_unfocused
# do not display edge borders # do not display edge borders
hide_edge_borders both hide_edge_borders both
# do not display a titlebar in tiled layout # do not display a titlebar in tiled layout
default_border pixel 2 default_border pixel 0
# gaps # gaps
gaps inner 10 gaps inner 10

View file

@ -7,8 +7,8 @@
} }
window#waybar { window#waybar {
background: #252936; background: #383C4A;
color: #7780a1; color: #D3DAE3;
} }
#clock, #clock,
@ -18,40 +18,45 @@ window#waybar {
#tray, #tray,
#workspaces { #workspaces {
padding: 0 10px; padding: 0 10px;
background: #1f222d; background: #2f343f;
} }
#custom-right-arrow-dark, #custom-right-arrow-dark,
#custom-left-arrow-dark { #custom-left-arrow-dark {
color: #1f222d; color: #2f343f;
} }
#custom-right-arrow-light, #custom-right-arrow-light,
#custom-left-arrow-light { #custom-left-arrow-light {
color: #252936; color: #383C4A;
background: #1f222d; background: #2f343f;
} }
#workspaces button { #workspaces button {
padding: 0 5px; padding: 0 5px;
background: #1f222d; background: #2f343f;
color: #7780a1; color: #D3DAE3;
border: none; border: none;
} }
#workspaces button.focused { #workspaces button.visible {
color: #ffffff; color: #FFFFFF;
font-weight: bold;
}
#workspaces button.urgent {
color: #F27835;
} }
#workspaces button:hover { #workspaces button:hover {
box-shadow: none; box-shadow: inherit;
text-shadow: none; text-shadow: inherit;
} }
#battery.warning { #battery.warning {
color: #ffd400; color: #F27835;
} }
#battery.critical { #battery.critical {
color: #ff5400; color: #FC4138;
} }