Skip to content

Commit

Permalink
Update with the latest tinted-theming colorschemes
Browse files Browse the repository at this point in the history
  • Loading branch information
tinted-theming-bot committed Apr 7, 2024
1 parent b3ddc53 commit 36cf769
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions build/base16-aztec-theme.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
;; base16-aztec-theme.el -- A base16 colorscheme

;;; Commentary:
;; Base16: (https://github.com/tinted-theming/home)

;;; Authors:
;; Scheme: TheNeverMan (github.com/TheNeverMan)
;; Template: Kaleb Elwert <[email protected]>

;;; Code:

(require 'base16-theme)

(defvar base16-aztec-theme-colors
'(:base00 "#101600"
:base01 "#1a1e01"
:base02 "#242604"
:base03 "#2e2e05"
:base04 "#ffd129"
:base05 "#ffda51"
:base06 "#ffe178"
:base07 "#ffeba0"
:base08 "#ee2e00"
:base09 "#ee8800"
:base0A "#eebb00"
:base0B "#63d932"
:base0C "#3d94a5"
:base0D "#5b4a9f"
:base0E "#883e9f"
:base0F "#a928b9")
"All colors for Base16 Aztec are defined here.")

;; Define the theme
(deftheme base16-aztec)

;; Add all the faces to the theme
(base16-theme-define 'base16-aztec base16-aztec-theme-colors)

;; Mark the theme as provided
(provide-theme 'base16-aztec)

(provide 'base16-aztec-theme)

;;; base16-aztec-theme.el ends here

0 comments on commit 36cf769

Please sign in to comment.