From f9e1699ea493bf183ed08292ac0cf053fc2603d8 Mon Sep 17 00:00:00 2001 From: tinted-theming-bot Date: Sun, 21 Jan 2024 01:04:28 +0000 Subject: [PATCH] Update with the latest tinted-theming colorschemes --- build/base16-measured-dark-theme.el | 44 ++++++++++++++++++++++++++++ build/base16-measured-light-theme.el | 44 ++++++++++++++++++++++++++++ build/base16-saga-theme.el | 44 ++++++++++++++++++++++++++++ 3 files changed, 132 insertions(+) create mode 100644 build/base16-measured-dark-theme.el create mode 100644 build/base16-measured-light-theme.el create mode 100644 build/base16-saga-theme.el diff --git a/build/base16-measured-dark-theme.el b/build/base16-measured-dark-theme.el new file mode 100644 index 0000000..dfd44f2 --- /dev/null +++ b/build/base16-measured-dark-theme.el @@ -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 + +;;; 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 diff --git a/build/base16-measured-light-theme.el b/build/base16-measured-light-theme.el new file mode 100644 index 0000000..620b9a1 --- /dev/null +++ b/build/base16-measured-light-theme.el @@ -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 + +;;; 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 diff --git a/build/base16-saga-theme.el b/build/base16-saga-theme.el new file mode 100644 index 0000000..abe77be --- /dev/null +++ b/build/base16-saga-theme.el @@ -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 + +;;; 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