Clean and brighten up brin theme
This commit is contained in:
parent
f484556a8d
commit
423987fa09
1 changed files with 45 additions and 43 deletions
|
@ -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>
|
;; Modified by Henrik Lissner <http://github.com/hlissner/emacs.d>
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -30,31 +30,31 @@
|
||||||
'brin
|
'brin
|
||||||
'(linum-format " %1d "))
|
'(linum-format " %1d "))
|
||||||
|
|
||||||
(let ((background "#1f1f1f")
|
(let ((background "#1f1f1f")
|
||||||
; (background "#11141c")
|
(gutters "#1f252a")
|
||||||
(gutters "#1f252a")
|
(gutter-fg "#55616A")
|
||||||
; (gutters "#343d46")
|
(gutters-active "#2e363c")
|
||||||
(gutter-fg "#49535b")
|
; (background "#11141c")
|
||||||
; (gutter-fg "#65737e")
|
; (gutters "#343d46")
|
||||||
(gutters-active "#2e363c")
|
; (gutter-fg "#65737e")
|
||||||
; (gutters-active "#4f5b66")
|
; (gutters-active "#4f5b66")
|
||||||
(builtin "#d08770")
|
(builtin "#d08770")
|
||||||
(foreground "#c0c5ce")
|
(foreground "#c0c5ce")
|
||||||
(invisibles "#65737e")
|
(invisibles "#65737e")
|
||||||
(lineHighlight "#242428")
|
(lineHighlight "#242428")
|
||||||
(selection "#4f5b66")
|
(selection "#4f5b66")
|
||||||
(text "#c0c5ce")
|
(text "#c0c5ce")
|
||||||
(comments "#65737e")
|
(comments "#65737e")
|
||||||
(punctuation "#c0c5ce")
|
(punctuation "#c0c5ce")
|
||||||
(delimiters "#c0c5ce")
|
(delimiters "#c0c5ce")
|
||||||
(operators "#c0c5ce")
|
(operators "#c0c5ce")
|
||||||
(keywords "#b48ead")
|
(keywords "#b48ead")
|
||||||
(variables "#bf616a")
|
(variables "#bf616a")
|
||||||
(functions "#8fa1b3")
|
(functions "#8fa1b3")
|
||||||
(methods "#8fa1b3")
|
(methods "#8fa1b3")
|
||||||
(strings "#a3be8c")
|
(strings "#a3be8c")
|
||||||
(constants "#d08770")
|
(constants "#d08770")
|
||||||
(white "#ffffff"))
|
(white "#ffffff"))
|
||||||
|
|
||||||
(custom-theme-set-faces
|
(custom-theme-set-faces
|
||||||
'brin
|
'brin
|
||||||
|
@ -62,27 +62,29 @@
|
||||||
;; Default colors
|
;; Default colors
|
||||||
;; *****************************************************************************************
|
;; *****************************************************************************************
|
||||||
|
|
||||||
`(default ((t (:foreground ,text :background ,background))))
|
`(default ((t (:foreground ,text :background ,background) )))
|
||||||
`(hl-line ((t (:background ,lineHighlight ))))
|
`(hl-line ((t (:background ,lineHighlight) )))
|
||||||
`(region ((t (:background ,selection ))))
|
`(region ((t (:background ,selection) )))
|
||||||
`(cursor ((t (:background ,white ))))
|
`(cursor ((t (:background ,white) )))
|
||||||
`(fringe ((t (:background ,background :foreground ,white))))
|
`(fringe ((t (:background ,background :foreground ,white) )))
|
||||||
`(linum ((t (:background ,background :foreground ,gutter-fg))))
|
`(linum ((t (:background ,background :foreground ,gutter-fg) )))
|
||||||
|
|
||||||
`(vertical-border ((t (:foreground ,gutters-active))))
|
`(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) ))))
|
|
||||||
|
|
||||||
`(highlight-indentation-face ((t (:background ,gutters ))))
|
`(mode-line ((t (:foreground ,white
|
||||||
`(highlight-indentation-current-column-face ((t (:background ,gutters-active ))))
|
: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 faces
|
||||||
;; *****************************************************************************************
|
;; *****************************************************************************************
|
||||||
|
|
||||||
`(font-lock-keyword-face ((t (:foreground ,keywords))))
|
`(font-lock-keyword-face ((t (:foreground ,keywords))))
|
||||||
`(font-lock-type-face ((t (:foreground ,punctuation))))
|
`(font-lock-type-face ((t (:foreground ,punctuation))))
|
||||||
`(font-lock-constant-face ((t (:foreground ,constants))))
|
`(font-lock-constant-face ((t (:foreground ,constants))))
|
||||||
|
@ -90,7 +92,7 @@
|
||||||
`(font-lock-builtin-face ((t (:foreground ,builtin))))
|
`(font-lock-builtin-face ((t (:foreground ,builtin))))
|
||||||
`(font-lock-string-face ((t (:foreground ,strings))))
|
`(font-lock-string-face ((t (:foreground ,strings))))
|
||||||
`(font-lock-comment-face ((t (:foreground ,comments))))
|
`(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-function-name-face ((t (:foreground ,functions))))
|
||||||
`(font-lock-doc-string-face ((t (:foreground ,strings)))))
|
`(font-lock-doc-string-face ((t (:foreground ,strings)))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue