-
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
94e0d8c
commit 0777262
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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-deep-oceanic-next-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: spearkkk (https://github.com/spearkkk/deep-oceanic-next) | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-deep-oceanic-next-theme-colors | ||
'(:base00 "#003b46" | ||
:base01 "#004f5e" | ||
:base02 "#006374" | ||
:base03 "#007a8a" | ||
:base04 "#0093a3" | ||
:base05 "#dce3e8" | ||
:base06 "#e6ebf0" | ||
:base07 "#f0f5f5" | ||
:base08 "#e6454b" | ||
:base09 "#ff6a4b" | ||
:base0A "#ffcc66" | ||
:base0B "#85b57a" | ||
:base0C "#4da6a6" | ||
:base0D "#3a82e6" | ||
:base0E "#8c4de6" | ||
:base0F "#e673a3") | ||
"All colors for Base16 Deep Oceanic Next are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-deep-oceanic-next) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-deep-oceanic-next base16-deep-oceanic-next-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-deep-oceanic-next) | ||
|
||
(provide 'base16-deep-oceanic-next-theme) | ||
|
||
;;; base16-deep-oceanic-next-theme.el ends here |