From 0a70988cbb689e10e0a2f69256005837828fbded Mon Sep 17 00:00:00 2001 From: tinted-theming-bot Date: Sun, 25 Aug 2024 21:16:30 +0000 Subject: [PATCH] Update with the latest tinted-theming colorschemes --- build/base16-everforest-dark-hard-theme.el | 20 +++++----- build/base16-everforest-theme.el | 22 +++++------ build/base16-onedark-dark-theme.el | 44 ++++++++++++++++++++++ build/base16-papercolor-dark-theme.el | 2 +- build/base16-papercolor-light-theme.el | 2 +- build/base16-shades-of-purple-theme.el | 2 +- build/base16-snazzy-theme.el | 2 +- build/base16-terracotta-dark-theme.el | 44 ++++++++++++++++++++++ build/base16-terracotta-theme.el | 44 ++++++++++++++++++++++ 9 files changed, 157 insertions(+), 25 deletions(-) create mode 100644 build/base16-onedark-dark-theme.el create mode 100644 build/base16-terracotta-dark-theme.el create mode 100644 build/base16-terracotta-theme.el diff --git a/build/base16-everforest-dark-hard-theme.el b/build/base16-everforest-dark-hard-theme.el index f3dee54..de189d7 100644 --- a/build/base16-everforest-dark-hard-theme.el +++ b/build/base16-everforest-dark-hard-theme.el @@ -4,7 +4,7 @@ ;; Base16: (https://github.com/tinted-theming/home) ;;; Authors: -;; Scheme: Oskar Liew (https://github.com/OskarLiew) +;; Scheme: Sainnhe Park (https://github.com/sainnhe) ;; Template: Kaleb Elwert ;;; Code: @@ -18,16 +18,16 @@ :base03 "#859289" :base04 "#9da9a0" :base05 "#d3c6aa" - :base06 "#e4e1cd" - :base07 "#fdf6e3" - :base08 "#7fbbb3" - :base09 "#d699b6" + :base06 "#edeada" + :base07 "#fffbef" + :base08 "#e67e80" + :base09 "#e69875" :base0A "#dbbc7f" - :base0B "#83c092" - :base0C "#e69875" - :base0D "#a7c080" - :base0E "#e67e80" - :base0F "#4c3743") + :base0B "#a7c080" + :base0C "#83c092" + :base0D "#7fbbb3" + :base0E "#d699b6" + :base0F "#9da9a0") "All colors for Base16 Everforest Dark Hard are defined here.") ;; Define the theme diff --git a/build/base16-everforest-theme.el b/build/base16-everforest-theme.el index f1f77ae..29e4d4e 100644 --- a/build/base16-everforest-theme.el +++ b/build/base16-everforest-theme.el @@ -12,22 +12,22 @@ (require 'base16-theme) (defvar base16-everforest-theme-colors - '(:base00 "#2f383e" - :base01 "#374247" - :base02 "#4a555b" + '(:base00 "#2d353b" + :base01 "#343f44" + :base02 "#475258" :base03 "#859289" :base04 "#9da9a0" :base05 "#d3c6aa" - :base06 "#e4e1cd" + :base06 "#e6e2cc" :base07 "#fdf6e3" - :base08 "#7fbbb3" - :base09 "#d699b6" + :base08 "#e67e80" + :base09 "#e69875" :base0A "#dbbc7f" - :base0B "#83c092" - :base0C "#e69875" - :base0D "#a7c080" - :base0E "#e67e80" - :base0F "#eaedc8") + :base0B "#a7c080" + :base0C "#83c092" + :base0D "#7fbbb3" + :base0E "#d699b6" + :base0F "#9da9a0") "All colors for Base16 Everforest are defined here.") ;; Define the theme diff --git a/build/base16-onedark-dark-theme.el b/build/base16-onedark-dark-theme.el new file mode 100644 index 0000000..17554d9 --- /dev/null +++ b/build/base16-onedark-dark-theme.el @@ -0,0 +1,44 @@ +;; base16-onedark-dark-theme.el -- A base16 colorscheme + +;;; Commentary: +;; Base16: (https://github.com/tinted-theming/home) + +;;; Authors: +;; Scheme: olimorris (https://github.com/olimorris) +;; Template: Kaleb Elwert + +;;; Code: + +(require 'base16-theme) + +(defvar base16-onedark-dark-theme-colors + '(:base00 "#000000" + :base01 "#1c1f24" + :base02 "#2c313a" + :base03 "#434852" + :base04 "#565c64" + :base05 "#abb2bf" + :base06 "#b6bdca" + :base07 "#c8ccd4" + :base08 "#ef596f" + :base09 "#d19a66" + :base0A "#e5c07b" + :base0B "#89ca78" + :base0C "#2bbac5" + :base0D "#61afef" + :base0E "#d55fde" + :base0F "#be5046") + "All colors for Base16 OneDark Dark are defined here.") + +;; Define the theme +(deftheme base16-onedark-dark) + +;; Add all the faces to the theme +(base16-theme-define 'base16-onedark-dark base16-onedark-dark-theme-colors) + +;; Mark the theme as provided +(provide-theme 'base16-onedark-dark) + +(provide 'base16-onedark-dark-theme) + +;;; base16-onedark-dark-theme.el ends here diff --git a/build/base16-papercolor-dark-theme.el b/build/base16-papercolor-dark-theme.el index f94ec91..320afc7 100644 --- a/build/base16-papercolor-dark-theme.el +++ b/build/base16-papercolor-dark-theme.el @@ -4,7 +4,7 @@ ;; Base16: (https://github.com/tinted-theming/home) ;;; Authors: -;; Scheme: Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) +;; Scheme: Jon Leopard (http://github.com/jonleopard), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) ;; Template: Kaleb Elwert ;;; Code: diff --git a/build/base16-papercolor-light-theme.el b/build/base16-papercolor-light-theme.el index 85ccd15..8831b1d 100644 --- a/build/base16-papercolor-light-theme.el +++ b/build/base16-papercolor-light-theme.el @@ -4,7 +4,7 @@ ;; Base16: (https://github.com/tinted-theming/home) ;;; Authors: -;; Scheme: Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) +;; Scheme: Jon Leopard (http://github.com/jonleopard), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) ;; Template: Kaleb Elwert ;;; Code: diff --git a/build/base16-shades-of-purple-theme.el b/build/base16-shades-of-purple-theme.el index 5a83ad2..c72b209 100644 --- a/build/base16-shades-of-purple-theme.el +++ b/build/base16-shades-of-purple-theme.el @@ -4,7 +4,7 @@ ;; Base16: (https://github.com/tinted-theming/home) ;;; Authors: -;; Scheme: Iolar Demartini Junior (http://github.com/demartini) based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode). +;; Scheme: Iolar Demartini Junior (http://github.com/demartini), based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode) ;; Template: Kaleb Elwert ;;; Code: diff --git a/build/base16-snazzy-theme.el b/build/base16-snazzy-theme.el index 5901c59..839daef 100644 --- a/build/base16-snazzy-theme.el +++ b/build/base16-snazzy-theme.el @@ -4,7 +4,7 @@ ;; Base16: (https://github.com/tinted-theming/home) ;;; Authors: -;; Scheme: Chawye Hsu (https://github.com/chawyehsu) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) +;; Scheme: Chawye Hsu (https://github.com/chawyehsu), based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) ;; Template: Kaleb Elwert ;;; Code: diff --git a/build/base16-terracotta-dark-theme.el b/build/base16-terracotta-dark-theme.el new file mode 100644 index 0000000..d9b6e09 --- /dev/null +++ b/build/base16-terracotta-dark-theme.el @@ -0,0 +1,44 @@ +;; base16-terracotta-dark-theme.el -- A base16 colorscheme + +;;; Commentary: +;; Base16: (https://github.com/tinted-theming/home) + +;;; Authors: +;; Scheme: Alexander Rossell Hayes (https://github.com/rossellhayes) +;; Template: Kaleb Elwert + +;;; Code: + +(require 'base16-theme) + +(defvar base16-terracotta-dark-theme-colors + '(:base00 "#241d1a" + :base01 "#362b27" + :base02 "#473933" + :base03 "#594740" + :base04 "#a78e84" + :base05 "#b8a59d" + :base06 "#cabbb5" + :base07 "#dcd2ce" + :base08 "#f6998f" + :base09 "#ffa888" + :base0A "#ffc37a" + :base0B "#b6c68a" + :base0C "#c0bcdb" + :base0D "#b0a4c3" + :base0E "#d8a2b0" + :base0F "#f1ae97") + "All colors for Base16 Terracotta Dark are defined here.") + +;; Define the theme +(deftheme base16-terracotta-dark) + +;; Add all the faces to the theme +(base16-theme-define 'base16-terracotta-dark base16-terracotta-dark-theme-colors) + +;; Mark the theme as provided +(provide-theme 'base16-terracotta-dark) + +(provide 'base16-terracotta-dark-theme) + +;;; base16-terracotta-dark-theme.el ends here diff --git a/build/base16-terracotta-theme.el b/build/base16-terracotta-theme.el new file mode 100644 index 0000000..dc02269 --- /dev/null +++ b/build/base16-terracotta-theme.el @@ -0,0 +1,44 @@ +;; base16-terracotta-theme.el -- A base16 colorscheme + +;;; Commentary: +;; Base16: (https://github.com/tinted-theming/home) + +;;; Authors: +;; Scheme: Alexander Rossell Hayes (https://github.com/rossellhayes) +;; Template: Kaleb Elwert + +;;; Code: + +(require 'base16-theme) + +(defvar base16-terracotta-theme-colors + '(:base00 "#efeae8" + :base01 "#dfd6d1" + :base02 "#d0c1bb" + :base03 "#c0aca4" + :base04 "#59453d" + :base05 "#473731" + :base06 "#352a25" + :base07 "#241c19" + :base08 "#a75045" + :base09 "#bd6942" + :base0A "#ce943e" + :base0B "#7a894a" + :base0C "#847f9e" + :base0D "#625574" + :base0E "#8d5968" + :base0F "#b07158") + "All colors for Base16 Terracotta are defined here.") + +;; Define the theme +(deftheme base16-terracotta) + +;; Add all the faces to the theme +(base16-theme-define 'base16-terracotta base16-terracotta-theme-colors) + +;; Mark the theme as provided +(provide-theme 'base16-terracotta) + +(provide 'base16-terracotta-theme) + +;;; base16-terracotta-theme.el ends here