diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-12-04 11:39:25 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-12-04 11:39:25 +0530 |
commit | 56be6e6401ab3c007aa2a023071cbf65d111cdcd (patch) | |
tree | 06be16f334b18e7e09ffd0c940fb3a47a0a6cbac | |
parent | 977cd36e9708dc84d1a347f1f6a793cb2179c559 (diff) |
changed background color in emacs to match polybar better
-rw-r--r-- | .config/alacritty/themes/dracula.yml | 3 | ||||
-rw-r--r-- | .config/lightdm/slick-greeter.conf | 2 | ||||
-rw-r--r-- | .config/ncmpcpp/config | 2 | ||||
-rw-r--r-- | .doom.d/custom.el | 3 | ||||
-rw-r--r-- | .doom.d/themes/zt-theme.el | 8 |
5 files changed, 11 insertions, 7 deletions
diff --git a/.config/alacritty/themes/dracula.yml b/.config/alacritty/themes/dracula.yml index 3866808..f17f5fa 100644 --- a/.config/alacritty/themes/dracula.yml +++ b/.config/alacritty/themes/dracula.yml @@ -1,7 +1,8 @@ colors: primary: # background: '0x282a36' - background: '0x100b13' + #background: '0x100b13' + background: '0x0e0911' # background: '0x1D1F21' foreground: '0xf8f8f2' cursor: diff --git a/.config/lightdm/slick-greeter.conf b/.config/lightdm/slick-greeter.conf index dcd9957..2b780a0 100644 --- a/.config/lightdm/slick-greeter.conf +++ b/.config/lightdm/slick-greeter.conf @@ -33,7 +33,7 @@ # clock-format=What clock format to use (e.g., %H:%M or %l:%M %p) [Greeter] activate-numlock=true -background=/hdd/Pictures/Waifu/797922.jpg +background=/etc/lightdm/bg.jpg background-color=#232627 draw-user-backgrounds=true show-a11y=false diff --git a/.config/ncmpcpp/config b/.config/ncmpcpp/config index 314a1d7..79c1cc0 100644 --- a/.config/ncmpcpp/config +++ b/.config/ncmpcpp/config @@ -89,7 +89,7 @@ visualizer_in_stereo = yes ## visualization and audio. ## # -visualizer_sync_interval = 0 +#visualizer_sync_interval = 0 # ## ## Note: To enable spectrum frequency visualization you need to compile ncmpcpp diff --git a/.doom.d/custom.el b/.doom.d/custom.el index 8091253..6bcf177 100644 --- a/.doom.d/custom.el +++ b/.doom.d/custom.el @@ -18,7 +18,8 @@ (setq web-mode-markup-indent-offset 2))) (custom-set-faces! - '(default :background "#100b13") + ;'(default :background "#100b13") + '(default :background "#0e0911") '(window-divider :foreground "#9b1bed") '(hl-line :background "#21242b") '(region :background "#71279f") diff --git a/.doom.d/themes/zt-theme.el b/.doom.d/themes/zt-theme.el index 24772b3..6fe0423 100644 --- a/.doom.d/themes/zt-theme.el +++ b/.doom.d/themes/zt-theme.el @@ -47,15 +47,17 @@ Can be an integer to determine the exact padding." "A dark theme inspired by Atom One Dark." ;; name default 256 16 - ((bg '("#282c34" "black" "black" )) + ;((bg '("#100b13" "black" "black" )) ; this looks bad because polybar has messed up color rendering or something + ((bg '("#0e0911" "black" "black" )) (fg '("#bbc2cf" "#bfbfbf" "brightwhite" )) ;; These are off-color variants of bg/fg, used primarily for `solaire-mode', ;; but can also be useful as a basis for subtle highlights (e.g. for hl-line ;; or region), especially when paired with the `doom-darken', `doom-lighten', ;; and `doom-blend' helper functions. - (bg-alt-alt '("#21242b" "black" "black" )) - (bg-alt '("#100b13" "black" "black" )) + (bg-alt-alt '("#21242b" "black" "black" )) + ;(bg-alt '("#100b13" "black" "black" )) + (bg-alt '("#0e0911" "black" "black" )) (fg-alt '("#5B6268" "#2d2d2d" "white" )) ;; These should represent a spectrum from bg to fg, where base0 is a starker |