-
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
a01e1fe
commit 5993a1a
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-everforest-dark-hard-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: Oskar Liew (https://github.com/OskarLiew) | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-everforest-dark-hard-theme-colors | ||
'(:base00 "#272e33" | ||
:base01 "#2e383c" | ||
:base02 "#414b50" | ||
:base03 "#859289" | ||
:base04 "#9da9a0" | ||
:base05 "#d3c6aa" | ||
:base06 "#e4e1cd" | ||
:base07 "#fdf6e3" | ||
:base08 "#7fbbb3" | ||
:base09 "#d699b6" | ||
:base0A "#dbbc7f" | ||
:base0B "#83c092" | ||
:base0C "#e69875" | ||
:base0D "#a7c080" | ||
:base0E "#e67e80" | ||
:base0F "#4c3743") | ||
"All colors for Base16 Everforest Dark Hard are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-everforest-dark-hard) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-everforest-dark-hard base16-everforest-dark-hard-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-everforest-dark-hard) | ||
|
||
(provide 'base16-everforest-dark-hard-theme) | ||
|
||
;;; base16-everforest-dark-hard-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-oxocarbon-dark-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: shaunsingh/IBM | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-oxocarbon-dark-theme-colors | ||
'(:base00 "#161616" | ||
:base01 "#262626" | ||
:base02 "#393939" | ||
:base03 "#525252" | ||
:base04 "#dde1e6" | ||
:base05 "#f2f4f8" | ||
:base06 "#ffffff" | ||
:base07 "#08bdba" | ||
:base08 "#3ddbd9" | ||
:base09 "#78a9ff" | ||
:base0A "#ee5396" | ||
:base0B "#33b1ff" | ||
:base0C "#ff7eb6" | ||
:base0D "#42be65" | ||
:base0E "#be95ff" | ||
:base0F "#82cfff") | ||
"All colors for Base16 Oxocarbon Dark are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-oxocarbon-dark) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-oxocarbon-dark base16-oxocarbon-dark-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-oxocarbon-dark) | ||
|
||
(provide 'base16-oxocarbon-dark-theme) | ||
|
||
;;; base16-oxocarbon-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-oxocarbon-light-theme.el -- A base16 colorscheme | ||
|
||
;;; Commentary: | ||
;; Base16: (https://github.com/tinted-theming/home) | ||
|
||
;;; Authors: | ||
;; Scheme: shaunsingh/IBM | ||
;; Template: Kaleb Elwert <[email protected]> | ||
|
||
;;; Code: | ||
|
||
(require 'base16-theme) | ||
|
||
(defvar base16-oxocarbon-light-theme-colors | ||
'(:base00 "#f2f4f8" | ||
:base01 "#dde1e6" | ||
:base02 "#525252" | ||
:base03 "#161616" | ||
:base04 "#262626" | ||
:base05 "#393939" | ||
:base06 "#525252" | ||
:base07 "#08bdba" | ||
:base08 "#ff7eb6" | ||
:base09 "#ee5396" | ||
:base0A "#ff6f00" | ||
:base0B "#0f62fe" | ||
:base0C "#673ab7" | ||
:base0D "#42be65" | ||
:base0E "#be95ff" | ||
:base0F "#37474f") | ||
"All colors for Base16 Oxocarbon Light are defined here.") | ||
|
||
;; Define the theme | ||
(deftheme base16-oxocarbon-light) | ||
|
||
;; Add all the faces to the theme | ||
(base16-theme-define 'base16-oxocarbon-light base16-oxocarbon-light-theme-colors) | ||
|
||
;; Mark the theme as provided | ||
(provide-theme 'base16-oxocarbon-light) | ||
|
||
(provide 'base16-oxocarbon-light-theme) | ||
|
||
;;; base16-oxocarbon-light-theme.el ends here |