Gee, what're we gonna do tonight, Brain?
This commit is contained in:
parent
4df3c32a8d
commit
3a79705475
44 changed files with 1806 additions and 1237 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
(custom-theme-set-variables 'brin)
|
||||
|
||||
(let ((background "#1f1f1f")
|
||||
(let ((background "#222222")
|
||||
;; (gutters "#262E34")
|
||||
(gutters "#1f252a")
|
||||
(gutter-fg "#55616A")
|
||||
|
@ -49,12 +49,18 @@
|
|||
(delimiters "#c0c5ce")
|
||||
(operators "#c0c5ce")
|
||||
(keywords "#b48ead")
|
||||
(variables "#bf616a")
|
||||
(variables "#CBECFF")
|
||||
(functions "#8fa1b3")
|
||||
(methods "#8fa1b3")
|
||||
(strings "#a3be8c")
|
||||
(constants "#d08770")
|
||||
(white "#ffffff"))
|
||||
(white "#ffffff")
|
||||
|
||||
(git-modified "#B4924E")
|
||||
(git-added "#91E331")
|
||||
;; (git-added "#55811D")
|
||||
(git-deleted "#A12121")
|
||||
)
|
||||
|
||||
(custom-theme-set-faces
|
||||
'brin
|
||||
|
@ -67,7 +73,7 @@
|
|||
`(region ((t (:background ,selection) )))
|
||||
`(cursor ((t (:background ,white) )))
|
||||
`(fringe ((t (:background ,background :foreground ,white) )))
|
||||
`(linum ((t (:background ,linum :foreground ,gutter-fg) )))
|
||||
`(linum ((t (:background ,background :foreground ,gutter-fg) )))
|
||||
|
||||
`(vertical-border ((t (:foreground ,gutters-active) )))
|
||||
|
||||
|
@ -76,35 +82,55 @@
|
|||
:box (:line-width 3 :color ,gutters-active) ))))
|
||||
|
||||
`(mode-line-inactive ((t (:foreground ,gutter-fg
|
||||
:background ,gutters
|
||||
:background ,background
|
||||
:box (:line-width 3 :color ,gutters) ))))
|
||||
|
||||
`(highlight-indentation-face ((t (:background ,linum) )))
|
||||
`(highlight-indentation-current-column-face ((t (:background ,gutters-active) )))
|
||||
`(mode-line-modified-face ((t (:foreground ,builtin))))
|
||||
|
||||
;; `(highlight-indentation-face ((t (:background ,linum) )))
|
||||
;; `(highlight-indentation-current-column-face ((t (:background ,gutters-active) )))
|
||||
|
||||
`(flyspell-incorrect ((t (:underline "#ff5555" :inherit unspecified))))
|
||||
|
||||
`(helm-source-header ((t (:background ,gutters-active :foreground ,strings :weight bold :height 1.0))))
|
||||
`(helm-selection ((t (:background ,selection))))
|
||||
|
||||
;; Font lock faces
|
||||
;; *****************************************************************************************
|
||||
|
||||
`(font-lock-keyword-face ((t (:foreground ,keywords))))
|
||||
`(font-lock-type-face ((t (:foreground ,punctuation))))
|
||||
`(font-lock-constant-face ((t (:foreground ,constants))))
|
||||
`(font-lock-variable-name-face ((t (:foreground ,variables))))
|
||||
`(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 ,comments))))
|
||||
`(font-lock-function-name-face ((t (:foreground ,functions))))
|
||||
`(font-lock-doc-string-face ((t (:foreground ,strings))))
|
||||
`(font-lock-keyword-face ((t (:foreground ,keywords))))
|
||||
`(font-lock-type-face ((t (:foreground ,punctuation))))
|
||||
`(font-lock-constant-face ((t (:foreground ,constants))))
|
||||
`(font-lock-variable-name-face ((t (:foreground ,variables))))
|
||||
`(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 ,comments))))
|
||||
`(font-lock-function-name-face ((t (:foreground ,functions))))
|
||||
`(font-lock-doc-string-face ((t (:foreground ,comments))))
|
||||
`(font-lock-doc-face ((t (:foreground ,comments))))
|
||||
|
||||
`(trailing-whitespace ((t (:background "#884444"))))
|
||||
`(whitespace-tab ((t (:foreground "#444444"))))
|
||||
`(whitespace-newline ((t (:foreground "#444444"))))
|
||||
|
||||
`(git-gutter+-modified ((t (:foreground ,git-modified))))
|
||||
`(git-gutter+-added ((t (:foreground ,git-added))))
|
||||
`(git-gutter+-deleted ((t (:foreground ,git-deleted))))
|
||||
|
||||
;; js2-mode
|
||||
;; *****************************************************************************************
|
||||
|
||||
`(js2-function-param ((t (:foreground ,variables))))
|
||||
`(js2-jsdoc-tag ((t (:foreground ,comments :weight bold :bold t))))
|
||||
|
||||
`(my-carriage-return-face ((t (:foreground "#555555"))))
|
||||
`(my-tab-face ((t (:foreground "#555555"))))
|
||||
`(trailing-whitespace ((t (:background "#884444")))))
|
||||
|
||||
;; *****************************************************************************************
|
||||
|
||||
)
|
||||
`(persp-selected-face ((t (:foreground ,builtin))))
|
||||
|
||||
))
|
||||
|
||||
|
||||
;; *****************************************************************************************
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue