use correct arc-darker colors in sway and waybar and rofi
This commit is contained in:
parent
5da3017b7a
commit
b9da55606e
3 changed files with 34 additions and 32 deletions
|
@ -5,13 +5,13 @@ configuration {
|
|||
font: "Roboto Regular 14";
|
||||
bw: 0;
|
||||
location: 0;
|
||||
padding: 5;
|
||||
padding: 7.5;
|
||||
terminal: "termite";
|
||||
matching: "normal";
|
||||
matching: "fuzzy";
|
||||
separator-style: "none";
|
||||
hide-scrollbar: true;
|
||||
color-normal: "#252936, #7780a1, #252936, #1f222d, #ffffff";
|
||||
color-urgent: "#252936, #ff5400, #252936, #1f222d, #ff5400";
|
||||
color-active: "#252936, #5ac8fa, #252936, #1f222d, #5ac8fa";
|
||||
color-window: "#1f222d, #1f222d, #7780a1";
|
||||
color-normal: "#383C4A, #D3DAE3, #383C4A, #5294e2, #FFFFFF";
|
||||
color-urgent: "#383C4A, #F27835, #383C4A, #5294e2, #FFFFFF";
|
||||
color-active: "#383C4A, #73d216, #383C4A, #5294e2, #5ac8fa";
|
||||
color-window: "#2F343F, #2F343F, #D3DAE3";
|
||||
}
|
||||
|
|
|
@ -16,16 +16,13 @@ include config.local
|
|||
# ------------------------------------------------------------------------------
|
||||
set $mod Mod4
|
||||
|
||||
set $color_bg_focused #1f222d
|
||||
set $color_bg_unfocused #252936
|
||||
set $color_fg_unfocused #7780a1
|
||||
set $color_fg_focused #ffffff
|
||||
set $color_indicator #fcc09e
|
||||
|
||||
set $color_red #ff5400
|
||||
set $color_yellow #ffd400
|
||||
set $color_green #a8ff00
|
||||
set $color_blue #5ac8fa
|
||||
set $color_bg_focused #2F343F
|
||||
set $color_bg_unfocused #383C4A
|
||||
set $color_fg_unfocused #D3DAE3
|
||||
set $color_fg_focused #FFFFFF
|
||||
set $color_indicator #4DADD4
|
||||
set $color_warn #F27835
|
||||
set $color_error #FC4138
|
||||
|
||||
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_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.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
|
||||
hide_edge_borders both
|
||||
|
||||
# do not display a titlebar in tiled layout
|
||||
default_border pixel 2
|
||||
default_border pixel 0
|
||||
|
||||
# gaps
|
||||
gaps inner 10
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
}
|
||||
|
||||
window#waybar {
|
||||
background: #252936;
|
||||
color: #7780a1;
|
||||
background: #383C4A;
|
||||
color: #D3DAE3;
|
||||
}
|
||||
|
||||
#clock,
|
||||
|
@ -18,40 +18,45 @@ window#waybar {
|
|||
#tray,
|
||||
#workspaces {
|
||||
padding: 0 10px;
|
||||
background: #1f222d;
|
||||
background: #2f343f;
|
||||
}
|
||||
|
||||
#custom-right-arrow-dark,
|
||||
#custom-left-arrow-dark {
|
||||
color: #1f222d;
|
||||
color: #2f343f;
|
||||
}
|
||||
|
||||
#custom-right-arrow-light,
|
||||
#custom-left-arrow-light {
|
||||
color: #252936;
|
||||
background: #1f222d;
|
||||
color: #383C4A;
|
||||
background: #2f343f;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 5px;
|
||||
background: #1f222d;
|
||||
color: #7780a1;
|
||||
background: #2f343f;
|
||||
color: #D3DAE3;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #ffffff;
|
||||
#workspaces button.visible {
|
||||
color: #FFFFFF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #F27835;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
box-shadow: inherit;
|
||||
text-shadow: inherit;
|
||||
}
|
||||
|
||||
#battery.warning {
|
||||
color: #ffd400;
|
||||
color: #F27835;
|
||||
}
|
||||
|
||||
#battery.critical {
|
||||
color: #ff5400;
|
||||
color: #FC4138;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue