added light theme

This commit is contained in:
Enrico Fasoli 2015-10-12 16:54:59 +02:00
parent b8b83b8cba
commit 6e2a812131
3 changed files with 42 additions and 41 deletions

View File

@ -1,42 +1,41 @@
!! COLORS
! special
*foreground: #9b9081
*background: #181b20
*cursorColor: #9b9081
*.foreground: #586e75
*.background: #fdf6e3
*.cursorColor: #586e75
! black
*color0: #353535
*color8: #5f5f5f
*.color0: #002b36
*.color8: #657b83
! red
*color1: #744b40
*color9: #785850
*.color1: #dc322f
*.color9: #dc322f
! green
*color2: #6d6137
*color10: #6f6749
*.color2: #859900
*.color10: #859900
! yellow
*color3: #765636
*color11: #776049
*.color3: #b58900
*.color11: #b58900
! blue
*color4: #61564b
*color12: #696057
*.color4: #268bd2
*.color12: #268bd2
! magenta
*color5: #6b4a49
*color13: #6f5a59
*.color5: #6c71c4
*.color13: #6c71c4
! cyan
*color6: #435861
*color14: #525f66
*.color6: #2aa198
*.color14: #2aa198
! white
*color7: #b3b3b3
*color15: #cdcdcd
*.color7: #93a1a1
*.color15: #fdf6e3
!! STYLE

16
bspwmrc
View File

@ -16,12 +16,16 @@ sh ~/.config/bspwm/lemonbar.sh &
bspc monitor -d 1 2 3 4 5 6
# Set up bspwm theme
bspc config border_width 2
bspc window_gap 24
bspc config top_padding 20
bspc config focused_border_color '#858585'
bspc config normal_border_color '#2e343D'
bspc config split_ratio 0.52
bspc config -m focused border_width 2
bspc config -m focused window_gap 24
PADDING=16
bspc config -m focused top_padding $PADDING
bspc config -m focused bottom_padding $PADDING
bspc config -m focused right_padding $PADDING
bspc config -m focused left_padding $PADDING
bspc config focused_border_color '#2e343D'
bspc config normal_border_color '#858585'
bspc config split_ratio 0.5
bspc config borderless_monocle true
bspc config gapless monocle true
bspc config focus_follows_pointer true

View File

@ -1,22 +1,20 @@
# general
set font "gohufont normal 11"
set default-bg "#181b20"
set font "xft:DejaVu Sans Mono:size=14"
set default-bg "#fdf6e3"
set statusbar-fg "#cdcdcd"
set statusbar-bg "#525f66"
set statusbar-fg "#586e75"
set statusbar-bg "#fdf6e3"
set highlight-color "#b3b3b3"
set highlight-active-color "#765636"
set highlight-color "#2aa198"
set highlight-active-color "#6c71c4"
set inputbar-fg "#9b9081"
set inputbar-bg "#181b20"
set inputbar-fg "#586e75"
set inputbar-bg "#fdf6e3"
# dark mode
# light mode
set recolor true
set recolor-lightcolor "#181b20"
set recolor-darkcolor "#9b9081"
set recolor-lightcolor "#fdf6e3"
set recolor-darkcolor "#586e75"
# nofitications
set notification-error-fg "#cdcdcd"
@ -26,8 +24,8 @@ set notification-warning-bg "#6d6137"
# completion bar
set n-completion-items 5
set completion-bg "#cdcdcd"
set completion-fg "#525f66"
set completion-bg "#fdf6e3"
set completion-fg "#586e75"
set completion-highlight-fg "#cdcdcd"
set completion-highlight-bg "#435861"