Add v0 theme

This commit is contained in:
Henrik Lissner 2015-01-26 02:15:27 -05:00
parent efcca26bc8
commit b65f92b3a3
2 changed files with 15 additions and 14 deletions

15
init.el
View file

@ -27,12 +27,12 @@
(defconst my-snippets-dir (concat my-dir "snippets/")) (defconst my-snippets-dir (concat my-dir "snippets/"))
(defconst my-tmp-dir (concat my-dir ".cache/")) (defconst my-tmp-dir (concat my-dir ".cache/"))
(defconst *dark-theme 'brin) (defconst *dark-theme 'v0)
(defconst *light-theme 'github) ; wtb better light theme... (defconst *light-theme 'github) ; wtb better light theme...
(defconst *fonts `(("Terminus (TTF)" ,(if (eq system-name "ganymede.local") 9 12) nil) (defconst *fonts `(("Terminus (TTF)" 12 nil 0.1)
("Ubuntu Mono" 16 t) ("Ubuntu Mono" 16 t 0)
("Inconsolata" 22 t))) ("Inconsolata" 22 t 0)))
(add-to-list 'load-path my-core-dir) (add-to-list 'load-path my-core-dir)
(add-to-list 'load-path my-modules-dir) (add-to-list 'load-path my-modules-dir)
@ -63,8 +63,8 @@
init-fly ; fly(check|spell) init-fly ; fly(check|spell)
init-git ; git-gutter + modes init-git ; git-gutter + modes
;; init-go ;; init-go
init-helm ; when you forget where you put your constellation init-helm ; a search engine for your life
init-ido ; when you forget where you put your keys init-ido ; a search engine for your car keys
init-java ; the poster child for carpal tunnel syndome init-java ; the poster child for carpal tunnel syndome
init-js ; alert("not java, javascript!") init-js ; alert("not java, javascript!")
init-lua ; zero-based indices? Zero-based indices. init-lua ; zero-based indices? Zero-based indices.
@ -76,12 +76,13 @@
init-regex ; /^[^\s](meaning)[^\n]*/ init-regex ; /^[^\s](meaning)[^\n]*/
init-ruby ; <3 init-ruby ; <3
init-scss ; @include magic; init-scss ; @include magic;
init-smalltalk ; init-smalltalk ; nice weather we're having
init-sh ; #!/bin/bash_your_head_in init-sh ; #!/bin/bash_your_head_in
init-swift ; yay, emoji variables! init-swift ; yay, emoji variables!
init-text ; I got nothing... init-text ; I got nothing...
init-tmux init-tmux
;; init-rust ;; init-rust
;; init-vala
init-web init-web
init-yasnippet ; type for me init-yasnippet ; type for me

View file

@ -13,20 +13,20 @@
;; ***************************************************************************************** ;; *****************************************************************************************
;; ;;
;; Brin :- An Emacs port of the Space Grey ST2 theme ;; v0 :- A dark Emacs theme inspired by Space Grey ST2 theme
;; ;;
;; ***************************************************************************************** ;; *****************************************************************************************
;; ;;
;; Modified by Henrik Lissner <http://github.com/hlissner/emacs.d> ;; By Henrik Lissner <http://github.com/hlissner/emacs.d>
;; ;;
(deftheme brin "Space Grey theme for Emacs") (deftheme v0 "V-NOUGHT dark theme for Emacs 24+")
(custom-theme-set-variables 'brin) (custom-theme-set-variables 'v0)
(let ((background "#222222") (let ((background "#222222")
;; (gutters "#262E34") ;; (gutters "#262E34")
(gutters "#1f252a") (gutters "#1f252a")
(gutter-fg "#55616A") (gutter-fg "#55616A")
(gutters-active "#2e363c") (gutters-active "#2e363c")
@ -58,7 +58,7 @@
(git-deleted "#A12121")) (git-deleted "#A12121"))
(custom-theme-set-faces (custom-theme-set-faces
'brin 'v0
;; Default colors ;; Default colors
;; ***************************************************************************************** ;; *****************************************************************************************
@ -141,7 +141,7 @@
;; ***************************************************************************************** ;; *****************************************************************************************
(provide-theme 'brin) (provide-theme 'v0)
;; Local Variables: ;; Local Variables:
;; no-byte-compile: t ;; no-byte-compile: t