Brighten up everything!
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
import:
|
||||
- ~/.alacritty_local.yml
|
||||
- ~/.config/alacritty/themes/gruvbox_light.yml
|
||||
- ~/.config/alacritty/themes/gruvbox_lighter.yml
|
||||
|
||||
env:
|
||||
TERM: alacritty
|
||||
|
||||
28
files/.config/alacritty/themes/gruvbox_lighter.yml
Normal file
28
files/.config/alacritty/themes/gruvbox_lighter.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
# Colors (Gruvbox light)
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0xf9f5d7'
|
||||
foreground: '0x282828'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0xfbf1c7'
|
||||
red: '0xcc241d'
|
||||
green: '0x98971a'
|
||||
yellow: '0xd79921'
|
||||
blue: '0x458588'
|
||||
magenta: '0xb16286'
|
||||
cyan: '0x689d6a'
|
||||
white: '0x7c6f64'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x928374'
|
||||
red: '0x9d0006'
|
||||
green: '0x79740e'
|
||||
yellow: '0xb57614'
|
||||
blue: '0x076678'
|
||||
magenta: '0x8f3f71'
|
||||
cyan: '0x427b58'
|
||||
white: '0x3c3836'
|
||||
@@ -89,10 +89,25 @@ bindsym XF86MonBrightnessUp exec --no-startup-id light -A 5 # increase screen br
|
||||
bindsym XF86MonBrightnessDown exec --no-startup-id light -U 5 # decrease screen brightness
|
||||
|
||||
# styling
|
||||
new_window none
|
||||
default_border pixel 2
|
||||
default_border normal
|
||||
title_align center
|
||||
hide_edge_borders smart
|
||||
|
||||
gaps inner 10
|
||||
|
||||
#set $gruv_bg "#f2e5bc"
|
||||
set $gruv_bg "#f9f5d7"
|
||||
set $gruv_bg_1 "#fbf1c7"
|
||||
#set $gruv_bg_1 "#f9f5d7"
|
||||
set $gruv_fg "#282828"
|
||||
#set $green "#98971a"
|
||||
# actually aqua
|
||||
set $green "#689d6a"
|
||||
set $red "#cc242d"
|
||||
set $light_red "#fb4934"
|
||||
set $yellow "#d79921"
|
||||
#set $yellow "#fabd2f"
|
||||
|
||||
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||
# finds out, if available)
|
||||
bar {
|
||||
@@ -103,35 +118,27 @@ bar {
|
||||
tray_output primary
|
||||
|
||||
colors {
|
||||
background #f2e5bc
|
||||
statusline #282828
|
||||
background $gruv_bg
|
||||
statusline $gruv_fg
|
||||
|
||||
# equivalent to focused
|
||||
focused_workspace #f2e5bc #98971a #282828
|
||||
focused_workspace $gruv_bg $green $gruv_fg
|
||||
# equivalent to focused_inactive
|
||||
active_workspace #f2e5bc #d79921 #282828
|
||||
active_workspace $grub_bg $yellow $gruv_fg
|
||||
# equivalent to unfocused
|
||||
inactive_workspace #f2e5bc #f2e5bc #282828
|
||||
inactive_workspace $gruv_bg $gruv_bg $gruv_fg
|
||||
# equivalent to urgent
|
||||
urgent_workspace #cc241d #fb4934 #282828
|
||||
urgent_workspace $red $light_red $gruv_fg
|
||||
# equivalent to urgent
|
||||
binding_mode #cc241d #fb4934 #282828
|
||||
binding_mode $red $light_red $gruv_fg
|
||||
}
|
||||
}
|
||||
|
||||
set $gruv_bg "#f2e5bc"
|
||||
set $gruv_bg_darker "#ebdbb2"
|
||||
set $gruv_fg "#282828"
|
||||
set $green "#98971a"
|
||||
set $red "#cc242d"
|
||||
set $light_red "#fb4934"
|
||||
set $yellow "#d79921"
|
||||
|
||||
# gruvbox style window titles
|
||||
# class border backgr. text indicator child_border
|
||||
client.focused $green $green $gruv_fg $green $green
|
||||
client.focused_inactive $yellow $yellow $gruv_fg $yellow $yellow
|
||||
client.unfocused $gruv_bg_darker $gruv_bg_darker $gruv_fg $gruv_bg_darker $gruv_bg_darker
|
||||
client.focused_inactive $yellow $yellow $gruv_fg $yellow $yellow
|
||||
client.unfocused $gruv_bg_1 $gruv_bg_1 $gruv_fg $gruv_bg_1 $gruv_bg_1
|
||||
client.urgent $red $light_red $gruv_fg $red $light_red
|
||||
|
||||
# startup
|
||||
|
||||
Reference in New Issue
Block a user