diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-11-27 17:42:41 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-11-27 17:42:41 +0530 |
commit | 92d5f2c7c6dbf96a41957056b48e3ec1c7551928 (patch) | |
tree | 4aa8fe88bd939ccf4134f8ce20ffc47ccd6d596f /.doom.d/custom.el | |
parent | c974f99921cb4d8eaf917f4edbff9b86c51f2a1b (diff) |
made changes in the theme to somewhat match my neovim
Diffstat (limited to '.doom.d/custom.el')
-rw-r--r-- | .doom.d/custom.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.doom.d/custom.el b/.doom.d/custom.el index f97dc92..607765c 100644 --- a/.doom.d/custom.el +++ b/.doom.d/custom.el @@ -18,8 +18,15 @@ (setq web-mode-markup-indent-offset 2))) (custom-set-faces! + '(default :background "#100b13") '(window-divider :foreground "#9b1bed") - ;'(line-number :foreground "#ff0aa3"))) - ) + '(hl-line :background "#21242b") + '(region :background "#71279f") + '(selection :background "#9b1bed") + '(cursor :background "#ff0aa3") + '(highlight :background "#ff0aa3") + '(line-number :slant normal :background "#100b13") + '(line-number-current-line :slant normal :background "#21242b")) + ; window transparency (add-to-list 'default-frame-alist '(alpha . 90)) |