-
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
99ad4ab
commit f9e1699
Showing
3 changed files
with
132 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-measured-dark-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: Measured (https://measured.co) | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-measured-dark-theme-colors | ||
'(:base00 "#00211f" | ||
:base01 "#003a38" | ||
:base02 "#005453" | ||
:base03 "#ababab" | ||
:base04 "#c3c3c3" | ||
:base05 "#dcdcdc" | ||
:base06 "#efefef" | ||
:base07 "#f5f5f5" | ||
:base08 "#ce7e8e" | ||
:base09 "#dca37c" | ||
:base0A "#bfac4e" | ||
:base0B "#56c16f" | ||
:base0C "#62c0be" | ||
:base0D "#88b0da" | ||
:base0E "#b39be0" | ||
:base0F "#d89aba") | ||
"All colors for Base16 Measured Dark are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-measured-dark) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-measured-dark base16-measured-dark-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-measured-dark) | ||
|
||
(provide 'base16-measured-dark-theme) | ||
|
||
;;; base16-measured-dark-theme.el ends here |
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-measured-light-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: Measured (https://measured.co) | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-measured-light-theme-colors | ||
'(:base00 "#fdf9f5" | ||
:base01 "#f9f5f1" | ||
:base02 "#ffeada" | ||
:base03 "#5a5a5a" | ||
:base04 "#404040" | ||
:base05 "#292929" | ||
:base06 "#181818" | ||
:base07 "#000000" | ||
:base08 "#ac1f35" | ||
:base09 "#ad5601" | ||
:base0A "#645a00" | ||
:base0B "#0c680c" | ||
:base0C "#01716f" | ||
:base0D "#0158ad" | ||
:base0E "#6645c2" | ||
:base0F "#a81a66") | ||
"All colors for Base16 Measured Light are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-measured-light) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-measured-light base16-measured-light-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-measured-light) | ||
|
||
(provide 'base16-measured-light-theme) | ||
|
||
;;; base16-measured-light-theme.el ends here |
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-saga-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: https://github.com/SAGAtheme/SAGA | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-saga-theme-colors | ||
'(:base00 "#05080a" | ||
:base01 "#0a1014" | ||
:base02 "#0f181e" | ||
:base03 "#141f27" | ||
:base04 "#192630" | ||
:base05 "#dce2f7" | ||
:base06 "#f8eae7" | ||
:base07 "#ccd3fe" | ||
:base08 "#ffd4e9" | ||
:base09 "#fbcbae" | ||
:base0A "#fbebc8" | ||
:base0B "#f7ddff" | ||
:base0C "#c5edc1" | ||
:base0D "#c9fff7" | ||
:base0E "#dcc3f9" | ||
:base0F "#f6dddd") | ||
"All colors for Base16 SAGA are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-saga) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-saga base16-saga-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-saga) | ||
|
||
(provide 'base16-saga-theme) | ||
|
||
;;; base16-saga-theme.el ends here |