-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update with the latest tinted-theming colorschemes
- Loading branch information
1 parent
f9e1699
commit c24d84b
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
;; base16-vesper-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: FormalSnake (https://github.com/formalsnake) | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-vesper-theme-colors | ||
'(:base00 "#101010" | ||
:base01 "#232323" | ||
:base02 "#222222" | ||
:base03 "#333333" | ||
:base04 "#999999" | ||
:base05 "#b7b7b7" | ||
:base06 "#c1c1c1" | ||
:base07 "#d5d5d5" | ||
:base08 "#de6e6e" | ||
:base09 "#dab083" | ||
:base0A "#ffc799" | ||
:base0B "#5f8787" | ||
:base0C "#60a592" | ||
:base0D "#8eaaaa" | ||
:base0E "#d69094" | ||
:base0F "#876c4f") | ||
"All colors for Base16 Vesper are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-vesper) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-vesper base16-vesper-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-vesper) | ||
|
||
(provide 'base16-vesper-theme) | ||
|
||
;;; base16-vesper-theme.el ends here |