AYU LIGHT
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
import:
|
||||
- ~/.alacritty_local.yml
|
||||
- ~/.config/alacritty/themes/gruvbox_lighter.yml
|
||||
- ~/.config/alacritty/themes/ayu_light.yml
|
||||
|
||||
env:
|
||||
TERM: alacritty
|
||||
|
||||
29
files/.config/alacritty/themes/ayu_light.yml
Normal file
29
files/.config/alacritty/themes/ayu_light.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
# Colors (Ayu Mirage)
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '#fafafa'
|
||||
foreground: '#575f66'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '#191E2A'
|
||||
red: '#FF3333'
|
||||
green: '#A6CC70'
|
||||
yellow: '#e7c547'
|
||||
blue: '#55b4d4'
|
||||
magenta: '#FFD580'
|
||||
cyan: '#95E6CB'
|
||||
white: '#C7C7C7'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '#686868'
|
||||
red: '#F27983'
|
||||
green: '#BAE67E'
|
||||
yellow: '#FFCC66'
|
||||
blue: '#5CCFE6'
|
||||
magenta: '#FFEE99'
|
||||
cyan: '#95E6CB'
|
||||
white: '#FFFFFF'
|
||||
|
||||
@@ -95,21 +95,14 @@ 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"
|
||||
set $bg "#fafafa"
|
||||
set $bg_1 "#fafaea"
|
||||
set $fg "#282828"
|
||||
set $green "#a6cc70"
|
||||
set $red "#ff3333"
|
||||
set $light_red "#f27983"
|
||||
set $yellow "#e7c547"
|
||||
|
||||
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||
# finds out, if available)
|
||||
bar {
|
||||
status_command i3status
|
||||
position top
|
||||
@@ -118,28 +111,27 @@ bar {
|
||||
tray_output primary
|
||||
|
||||
colors {
|
||||
background $gruv_bg
|
||||
statusline $gruv_fg
|
||||
background $bg
|
||||
statusline $fg
|
||||
|
||||
# equivalent to focused
|
||||
focused_workspace $gruv_bg $green $gruv_fg
|
||||
focused_workspace $bg $green $fg
|
||||
# equivalent to focused_inactive
|
||||
active_workspace $grub_bg $yellow $gruv_fg
|
||||
active_workspace $grub_bg $yellow $fg
|
||||
# equivalent to unfocused
|
||||
inactive_workspace $gruv_bg $gruv_bg $gruv_fg
|
||||
inactive_workspace $bg $bg $fg
|
||||
# equivalent to urgent
|
||||
urgent_workspace $red $light_red $gruv_fg
|
||||
urgent_workspace $red $light_red $fg
|
||||
# equivalent to urgent
|
||||
binding_mode $red $light_red $gruv_fg
|
||||
binding_mode $red $light_red $fg
|
||||
}
|
||||
}
|
||||
|
||||
# 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_1 $gruv_bg_1 $gruv_fg $gruv_bg_1 $gruv_bg_1
|
||||
client.urgent $red $light_red $gruv_fg $red $light_red
|
||||
client.focused $green $green $fg $green $green
|
||||
client.focused_inactive $yellow $yellow $fg $yellow $yellow
|
||||
client.unfocused $bg_1 $bg_1 $fg $bg_1 $bg_1
|
||||
client.urgent $red $light_red $fg $red $light_red
|
||||
|
||||
# startup
|
||||
exec --no-startup-id $HOME/scripts/start_progs.sh
|
||||
|
||||
@@ -8,44 +8,44 @@ set statusbar-h-padding 0
|
||||
set statusbar-v-padding 0
|
||||
set show-scrollbars false
|
||||
|
||||
# gruvbox
|
||||
set notification-error-bg "#f9f5d7" # bg
|
||||
# colors
|
||||
set notification-error-bg "#fafafa" # bg
|
||||
set notification-error-fg "#9d0006" # bright:red
|
||||
set notification-warning-bg "#f9f5d7" # bg
|
||||
set notification-warning-bg "#fafafa" # bg
|
||||
set notification-warning-fg "#b57614" # bright:yellow
|
||||
set notification-bg "#f9f5d7" # bg
|
||||
set notification-bg "#fafafa" # bg
|
||||
set notification-fg "#79740e" # bright:green
|
||||
|
||||
set completion-bg "#f9f5d7" # bg
|
||||
set completion-bg "#fafafa" # bg
|
||||
set completion-fg "#3c3836" # fg
|
||||
set completion-group-bg "#fbf1c7" # bg1
|
||||
set completion-group-bg "#fafafa" # bg1
|
||||
set completion-group-fg "#928374" # gray
|
||||
set completion-highlight-bg "#689d6a" # aqua
|
||||
set completion-highlight-fg "#ebdbb2" # bg2
|
||||
|
||||
# Define the color in index mode
|
||||
set index-bg "#ebdbb2" # bg2
|
||||
set index-bg "#fafafa" # bg2
|
||||
set index-fg "#3c3836" # fg
|
||||
set index-active-bg "#689d6a" # aqua
|
||||
set index-active-fg "#ebdbb2" # bg2
|
||||
|
||||
set inputbar-bg "#f9f5d7" # bg
|
||||
set inputbar-bg "#fafafa" # bg
|
||||
set inputbar-fg "#3c3836" # fg
|
||||
|
||||
set statusbar-bg "#f9f5d7" # bg
|
||||
set statusbar-bg "#fafafa" # bg
|
||||
set statusbar-fg "#3c3836" # fg
|
||||
|
||||
set highlight-color "#b57614" # bright:yellow
|
||||
set highlight-active-color "#af3a03" # bright:orange
|
||||
|
||||
set default-bg "#f9f5d7" # bg
|
||||
set default-bg "#fafafa" # bg
|
||||
set default-fg "#3c3836" # fg
|
||||
set render-loading true
|
||||
set render-loading-bg "#f9f5d7" # bg
|
||||
set render-loading-bg "#fafafa" # bg
|
||||
set render-loading-fg "#3c3836" # fg
|
||||
|
||||
# Recolor book content's color
|
||||
set recolor-lightcolor "#f9f5d7" # bg
|
||||
set recolor-lightcolor "#fafafa" # bg
|
||||
set recolor-darkcolor "#3c3836" # fg
|
||||
set recolor "true"
|
||||
set recolor-keephue "true"
|
||||
|
||||
Reference in New Issue
Block a user