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

16
bspwmrc
View File

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

View File

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