Clean and brighten up brin theme

This commit is contained in:
Henrik Lissner 2014-07-16 03:28:17 -04:00
parent f484556a8d
commit 423987fa09

View file

@ -13,11 +13,11 @@
;; *****************************************************************************************
;;
;; Brin :- An Emacs port of the Space Grey ST2 theme
;; Brin :- An Emacs port of the Space Grey ST2 theme
;;
;; *****************************************************************************************
;;
;;
;; Modified by Henrik Lissner <http://github.com/hlissner/emacs.d>
;;
@ -30,31 +30,31 @@
'brin
'(linum-format " %1d "))
(let ((background "#1f1f1f")
; (background "#11141c")
(gutters "#1f252a")
; (gutters "#343d46")
(gutter-fg "#49535b")
; (gutter-fg "#65737e")
(gutters-active "#2e363c")
(let ((background "#1f1f1f")
(gutters "#1f252a")
(gutter-fg "#55616A")
(gutters-active "#2e363c")
; (background "#11141c")
; (gutters "#343d46")
; (gutter-fg "#65737e")
; (gutters-active "#4f5b66")
(builtin "#d08770")
(foreground "#c0c5ce")
(invisibles "#65737e")
(lineHighlight "#242428")
(selection "#4f5b66")
(text "#c0c5ce")
(comments "#65737e")
(punctuation "#c0c5ce")
(delimiters "#c0c5ce")
(operators "#c0c5ce")
(keywords "#b48ead")
(variables "#bf616a")
(functions "#8fa1b3")
(methods "#8fa1b3")
(strings "#a3be8c")
(constants "#d08770")
(white "#ffffff"))
(builtin "#d08770")
(foreground "#c0c5ce")
(invisibles "#65737e")
(lineHighlight "#242428")
(selection "#4f5b66")
(text "#c0c5ce")
(comments "#65737e")
(punctuation "#c0c5ce")
(delimiters "#c0c5ce")
(operators "#c0c5ce")
(keywords "#b48ead")
(variables "#bf616a")
(functions "#8fa1b3")
(methods "#8fa1b3")
(strings "#a3be8c")
(constants "#d08770")
(white "#ffffff"))
(custom-theme-set-faces
'brin
@ -62,27 +62,29 @@
;; Default colors
;; *****************************************************************************************
`(default ((t (:foreground ,text :background ,background))))
`(hl-line ((t (:background ,lineHighlight ))))
`(region ((t (:background ,selection ))))
`(cursor ((t (:background ,white ))))
`(fringe ((t (:background ,background :foreground ,white))))
`(linum ((t (:background ,background :foreground ,gutter-fg))))
`(default ((t (:foreground ,text :background ,background) )))
`(hl-line ((t (:background ,lineHighlight) )))
`(region ((t (:background ,selection) )))
`(cursor ((t (:background ,white) )))
`(fringe ((t (:background ,background :foreground ,white) )))
`(linum ((t (:background ,background :foreground ,gutter-fg) )))
`(vertical-border ((t (:foreground ,gutters-active))))
`(mode-line ((t (:foreground ,white
:background ,gutters-active
:box (:line-width 3 :color ,gutters-active) ))))
`(mode-line-inactive ((t (:foreground ,gutter-fg
:background ,gutters
:box (:line-width 3 :color ,gutters) ))))
`(vertical-border ((t (:foreground ,gutters-active) )))
`(highlight-indentation-face ((t (:background ,gutters ))))
`(highlight-indentation-current-column-face ((t (:background ,gutters-active ))))
`(mode-line ((t (:foreground ,white
:background ,gutters-active
:box (:line-width 3 :color ,gutters-active) ))))
`(mode-line-inactive ((t (:foreground ,gutter-fg
:background ,gutters
:box (:line-width 3 :color ,gutters) ))))
`(highlight-indentation-face ((t (:background ,gutters) )))
`(highlight-indentation-current-column-face ((t (:background ,gutters-active) )))
;; Font lock faces
;; *****************************************************************************************
`(font-lock-keyword-face ((t (:foreground ,keywords))))
`(font-lock-type-face ((t (:foreground ,punctuation))))
`(font-lock-constant-face ((t (:foreground ,constants))))
@ -90,7 +92,7 @@
`(font-lock-builtin-face ((t (:foreground ,builtin))))
`(font-lock-string-face ((t (:foreground ,strings))))
`(font-lock-comment-face ((t (:foreground ,comments))))
`(font-lock-comment-delimiter-face ((t (:foreground ,delimiters))))
`(font-lock-comment-delimiter-face ((t (:foreground ,comments))))
`(font-lock-function-name-face ((t (:foreground ,functions))))
`(font-lock-doc-string-face ((t (:foreground ,strings)))))