sway/colors: clean comments, new bg
This commit is contained in:
parent
d1ce15a7c9
commit
e8b456cb97
1 changed files with 31 additions and 33 deletions
|
@ -1,7 +1,27 @@
|
|||
# Constants
|
||||
# note: black was claimed as 'transparent' in the source where this was found
|
||||
# Sway WM colors, format:
|
||||
# client.<class> <border> <background> <text> [<indicator> [<child_border>]]
|
||||
#
|
||||
# nord colors from here: https://www.nordtheme.com/docs/colors-and-palettes
|
||||
# Defaults:
|
||||
# ┌──────────────────┬─────────┬────────────┬─────────┬───────────┬──────────────┐
|
||||
# │ class │ border │ background │ text │ indicator │ child_border │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │background │ n/a │ #ffffff │ n/a │ n/a │ n/a │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │focused │ #4c7899 │ #285577 │ #ffffff │ #2e9ef4 │ #285577 │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │focused_inactive │ #333333 │ #5f676a │ #ffffff │ #484e50 │ #5f676a │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │focused_tab_title │ #333333 │ #5f676a │ #ffffff │ n/a │ n/a │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │unfocused │ #333333 │ #222222 │ #888888 │ #292d2e │ #222222 │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │urgent │ #2f343a │ #900000 │ #ffffff │ #900000 │ #900000 │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │placeholder │ #000000 │ #0c0c0c │ #ffffff │ #000000 │ #0c0c0c │
|
||||
# └──────────────────┴─────────┴────────────┴─────────┴───────────┴──────────────┘
|
||||
# Preview: https://thomashunter.name/i3-configurator/
|
||||
#
|
||||
# Nord colors sourced here: https://www.nordtheme.com/docs/colors-and-palettes
|
||||
set {
|
||||
$white #ffffff
|
||||
$cyan #00afd7
|
||||
|
@ -30,47 +50,25 @@ set {
|
|||
$nord15 #b48ead
|
||||
}
|
||||
|
||||
# format:
|
||||
# client.<class> <border> <background> <text> [<indicator> [<child_border>]]
|
||||
#
|
||||
# The default colors are:
|
||||
# ┌──────────────────┬─────────┬────────────┬─────────┬───────────┬──────────────┐
|
||||
# │ class │ border │ background │ text │ indicator │ child_border │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │background │ n/a │ #ffffff │ n/a │ n/a │ n/a │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │focused │ #4c7899 │ #285577 │ #ffffff │ #2e9ef4 │ #285577 │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │focused_inactive │ #333333 │ #5f676a │ #ffffff │ #484e50 │ #5f676a │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │focused_tab_title │ #333333 │ #5f676a │ #ffffff │ n/a │ n/a │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │unfocused │ #333333 │ #222222 │ #888888 │ #292d2e │ #222222 │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │urgent │ #2f343a │ #900000 │ #ffffff │ #900000 │ #900000 │
|
||||
# ├──────────────────┼─────────┼────────────┼─────────┼───────────┼──────────────┤
|
||||
# │placeholder │ #000000 │ #0c0c0c │ #ffffff │ #000000 │ #0c0c0c │
|
||||
# └──────────────────┴─────────┴────────────┴─────────┴───────────┴──────────────┘
|
||||
client.background #3B6EA5
|
||||
|
||||
# Dracula colors:
|
||||
# client.focused #6272A4 #6272A4 #F8F8F2 #6272A4 #6272A4
|
||||
# client.focused_inactive #44475A #44475A #F8F8F2 #44475A #44475A
|
||||
# client.unfocused #282A36 #282A36 #BFBFBF #282A36 #282A36
|
||||
#
|
||||
|
||||
# Garuda (distribution) colors:
|
||||
# client.focused #608080 $nord2 $nord6 $nord7 $nord8
|
||||
# client.focused_inactive #608080 $nord0 $nord4 $nord3 $nord3
|
||||
# client.unfocused #608080 $nord0 $nord4 $nord3 $nord3
|
||||
# client.urgent #608080 $nord13 $nord0 $nord7 $nord13
|
||||
|
||||
|
||||
# last-used:
|
||||
# Garuda but tweaked: diff borders, nord alert/yellow
|
||||
#client.background $black
|
||||
#client.focused $nord2 $nord2 $nord6 $nord7 $nord8
|
||||
#client.focused_inactive $nord3 $nord0 $nord4 $nord3 $nord3
|
||||
#client.unfocused $nord3 $nord0 $nord4 $nord3 $nord3
|
||||
#client.urgent $nord12 $nord13 $nord0 $nord7 $nord13
|
||||
# last-used, Garuda but tweaked: diff borders, nord alert/yellow
|
||||
# client.background $black
|
||||
# client.focused $nord2 $nord2 $nord6 $nord7 $nord8
|
||||
# client.focused_inactive $nord3 $nord0 $nord4 $nord3 $nord3
|
||||
# client.unfocused $nord3 $nord0 $nord4 $nord3 $nord3
|
||||
# client.urgent $nord12 $nord13 $nord0 $nord7 $nord13
|
||||
|
||||
# xfce kind of look, from https://github.com/ayamir/nord-and-light/blob/master/.config/sway/config
|
||||
# client.focused $nord10 $nord10 $nord1 $nord1 $nord10
|
||||
|
|
Loading…
Reference in a new issue