All the themes have been updated with spaceline colors

This commit is contained in:
Sameer Rahmani 2018-04-19 01:36:09 +01:00
parent d5760248e1
commit 9612694a9b
5 changed files with 33 additions and 5 deletions

View File

@ -3,13 +3,13 @@
;; THEME
;; =====
;; Load the default theme
;; Other options are:
;; (theme themes/color-theme-spacemacs-monokai)
;; (theme themes/color-theme-spacemacs-light)
;; (theme themes/color-theme-doom-one)
(theme themes/fg42-theme)
;; Other options are:
;; (theme themes/color-theme-spacemacs-light)
;; (theme themes/color-theme-spacemacs-dark)
;; (theme themes/color-theme-doom-one)
;; (theme themes/color-theme-doom-molokai)
;;(theme themes/color-theme-spacemacs-dark)
;; ABILITIES
;; =========

View File

@ -1,5 +1,12 @@
(require 'doom-themes)
(defun themes/color-theme-doom-molokai-spaceline-faces (face active)
(cond
((eq 'face1 face) (if active 'dired-mark 'powerline-inactive1))
((eq 'face2 face) (if active 'success 'mode-line-inactive))
((eq 'line face) (if active 'shadow 'shadow))
((eq 'highlight face) (if active 'dired-marked 'shadow))))
(defun themes/color-theme-doom-molokai ()
(interactive)
(load-theme 'doom-molokai t)

View File

@ -1,6 +1,13 @@
(require 'doom-themes)
(require 'solaire-mode)
(defun themes/color-theme-doom-one-spaceline-faces (face active)
(cond
((eq 'face1 face) (if active 'minibuffer-prompt 'powerline-inactive1))
((eq 'face2 face) (if active 'success 'mode-line-inactive))
((eq 'line face) (if active 'shadow 'shadow))
((eq 'highlight face) (if active 'match 'shadow))))
(defun themes/color-theme-doom-one ()
(interactive)

View File

@ -1,5 +1,12 @@
(require 'spacemacs-common)
(defun themes/color-theme-spacemacs-dark-spaceline-faces (face active)
(cond
((eq 'face1 face) (if active 'minibuffer-prompt 'powerline-inactive1))
((eq 'face2 face) (if active 'success 'mode-line-inactive))
((eq 'line face) (if active 'shadow 'shadow))
((eq 'highlight face) (if active 'font-lock-function-name-face 'shadow))))
(defun themes/color-theme-spacemacs-dark ()
"Spacemacs dark color theme"
(interactive)

View File

@ -1,5 +1,12 @@
(require 'spacemacs-common)
(defun themes/color-theme-spacemacs-light-spaceline-faces (face active)
(cond
((eq 'face1 face) (if active 'dired-mark 'powerline-inactive1))
((eq 'face2 face) (if active 'success 'mode-line-inactive))
((eq 'line face) (if active 'shadow 'shadow))
((eq 'highlight face) (if active 'dired-marked 'shadow))))
(defun themes/color-theme-spacemacs-light ()
"Spacemacs light color theme"
(interactive)