diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-31 17:23:22 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-31 17:23:22 +0100 |
commit | d05d83e0be88a70da5ec4982e36166f68b9cdd2f (patch) | |
tree | 8e5d8b3130ab590d60b57c00b5dfebbf31f3d080 /Doom/.doom.d/modules/private | |
parent | dea9c7b859a60cf4f7458a9cbd498cff4c90c7cb (diff) | |
download | dotfiles-d05d83e0be88a70da5ec4982e36166f68b9cdd2f.tar.gz dotfiles-d05d83e0be88a70da5ec4982e36166f68b9cdd2f.tar.bz2 dotfiles-d05d83e0be88a70da5ec4982e36166f68b9cdd2f.zip |
~my-* -> +oreoline-*
Diffstat (limited to 'Doom/.doom.d/modules/private')
-rw-r--r-- | Doom/.doom.d/modules/private/oreoline/config.el | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/Doom/.doom.d/modules/private/oreoline/config.el b/Doom/.doom.d/modules/private/oreoline/config.el index bea5d87..7d34709 100644 --- a/Doom/.doom.d/modules/private/oreoline/config.el +++ b/Doom/.doom.d/modules/private/oreoline/config.el @@ -4,24 +4,26 @@ :hook (after-init . telephone-line-mode) :init ;; Faces - (defface my-accent-dark '((t (:foreground "Black" :background "Cadet Blue"))) "") - (defface my-evil-dark '((t (:foreground "White" :background "Black"))) "") - (defface my-accent-light '((t (:foreground "black" :background "Light Slate Grey"))) "") - (defface my-evil-light '((t (:foreground "black" :background "Sky Blue"))) "") + (defface +oreoline-accent-dark '((t (:foreground "black" :background "Cadet Blue" ))) "") + (defface +oreoline-evil-dark '((t (:foreground "white" :background "dark green" ))) "") + (defface +oreoline-evil-inactive '((t (:foreground "cornsilk" :background "gray26" ))) "") + + (defface +oreoline-accent-light '((t (:foreground "black" :background "Light Slate Grey"))) "") + (defface +oreoline-evil-light '((t (:foreground "black" :background "Sky Blue" ))) "") ;; Set telephone line faces (setq telephone-line-faces - '((evil . (my-evil-dark . my-evil-dark)) - (modal . telephone-line-modal-face) - (ryo . telephone-line-ryo-modal-face) - (accent . (my-accent-dark . telephone-line-accent-inactive)) + '((evil . (+oreoline-evil-dark . +oreoline-evil-inactive)) + (modal . telephone-line-modal-face) + (ryo . telephone-line-ryo-modal-face) + (accent . (+oreoline-accent-dark . telephone-line-accent-inactive)) (nil mode-line . mode-line-inactive))) (when (featurep! +light) (setq telephone-line-faces - '((evil . (my-evil-light . my-evil-light)) - (modal . telephone-line-modal-face) - (ryo . telephone-line-ryo-modal-face) - (accent . (my-accent-light . telephone-line-accent-inactive)) + '((evil . (+oreoline-evil-light . +oreoline-evil-inactive)) + (modal . telephone-line-modal-face) + (ryo . telephone-line-ryo-modal-face) + (accent . (+oreoline-accent-light . telephone-line-accent-inactive)) (nil mode-line . mode-line-inactive)))) ;; Seperators |