emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/ample-theme 83ac157 111/137: custom faces


From: ELPA Syncer
Subject: [nongnu] elpa/ample-theme 83ac157 111/137: custom faces
Date: Thu, 21 Oct 2021 18:00:28 -0400 (EDT)

branch: elpa/ample-theme
commit 83ac15796d502e493a636fbe421eaa054e99e460
Author: jordonbiondo <biondoj@mail.gvsu.edu>
Commit: jordonbiondo <biondoj@mail.gvsu.edu>

    custom faces
---
 ample-flat-theme.el  | 29 +++++++++++++++++++++++++++++
 ample-light-theme.el | 29 +++++++++++++++++++++++++++++
 ample-theme.el       | 29 +++++++++++++++++++++++++++++
 3 files changed, 87 insertions(+)

diff --git a/ample-flat-theme.el b/ample-flat-theme.el
index 724648e..39e42d3 100644
--- a/ample-flat-theme.el
+++ b/ample-flat-theme.el
@@ -701,6 +701,35 @@
    `(guide-key/highlight-command-face ((t (:foreground ,ample/blue))))
    `(guide-key/key-face               ((t (:foreground ,ample/gray))))
 
+   ;; custom
+   `(custom-button                  ((t (:foreground nil :background nil))))
+   `(custom-button-mouse            ((t (:foreground nil :background nil))))
+   `(custom-button-pressed          ((t (:foreground nil :background nil))))
+   `(custom-button-pressed-unraised ((t (:foreground ,ample/purple :background 
nil))))
+   `(custom-button-unraised         ((t (:foreground nil :background nil))))
+   `(custom-changed                 ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-comment                 ((t (:foreground ,ample/bg :background 
,ample/yellow))))
+   `(custom-comment-tag             ((t (:foreground ,ample/fg :background 
nil))))
+   `(custom-documentation           ((t (:foreground nil :background nil))))
+   `(custom-face-tag                ((t (:foreground ,ample/light-blue 
:background nil))))
+   `(custom-group-subtitle          ((t (:foreground nil :background nil :bold 
t))))
+   `(custom-group-tag               ((t (:foreground ,ample/light-blue 
:background nil :bold t))))
+   `(custom-group-tag-1             ((t (:foreground ,ample/yellow :background 
nil :bold t))))
+   `(custom-invalid                 ((t (:foreground ,ample/bg :background 
,ample/red))))
+   `(custom-link                    ((t (:inherit button))))
+   `(custom-modified                ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-rogue                   ((t (:foreground ,ample/yellow :background 
,ample/bg))))
+   `(custom-saved                   ((t (:foreground nil :background nil 
:underline t))))
+   `(custom-set                     ((t (:foreground ,ample/fg :background 
,ample/dark-gray))))
+   `(custom-state                   ((t (:foreground ,ample/green :background 
nil))))
+   `(custom-themed                  ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-variable-button         ((t (:foreground nil :background nil 
:underline t :bold t))))
+   `(custom-variable-tag            ((t (:foreground ,ample/light-blue 
:background nil :bold t))))
+   `(custom-visibility              ((t (:inherit button))))
+
+   ;; widget
+   `(widget-field  ((t (:foreground ,ample/fg :background ,ample/dark-gray))))
+
    ) ;; end of custom-theme-set-faces
 
   (custom-theme-set-variables
diff --git a/ample-light-theme.el b/ample-light-theme.el
index 538db46..3f9f8ec 100644
--- a/ample-light-theme.el
+++ b/ample-light-theme.el
@@ -692,6 +692,35 @@
    `(guide-key/highlight-command-face ((t (:foreground ,ample/blue))))
    `(guide-key/key-face               ((t (:foreground ,ample/gray))))
 
+   ;; custom
+   `(custom-button                  ((t (:foreground nil :background nil))))
+   `(custom-button-mouse            ((t (:foreground nil :background nil))))
+   `(custom-button-pressed          ((t (:foreground nil :background nil))))
+   `(custom-button-pressed-unraised ((t (:foreground ,ample/purple :background 
nil))))
+   `(custom-button-unraised         ((t (:foreground nil :background nil))))
+   `(custom-changed                 ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-comment                 ((t (:foreground ,ample/bg :background 
,ample/yellow))))
+   `(custom-comment-tag             ((t (:foreground ,ample/fg :background 
nil))))
+   `(custom-documentation           ((t (:foreground nil :background nil))))
+   `(custom-face-tag                ((t (:foreground ,ample/light-blue 
:background nil))))
+   `(custom-group-subtitle          ((t (:foreground nil :background nil :bold 
t))))
+   `(custom-group-tag               ((t (:foreground ,ample/light-blue 
:background nil :bold t))))
+   `(custom-group-tag-1             ((t (:foreground ,ample/yellow :background 
nil :bold t))))
+   `(custom-invalid                 ((t (:foreground ,ample/bg :background 
,ample/red))))
+   `(custom-link                    ((t (:inherit button))))
+   `(custom-modified                ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-rogue                   ((t (:foreground ,ample/yellow :background 
,ample/bg))))
+   `(custom-saved                   ((t (:foreground nil :background nil 
:underline t))))
+   `(custom-set                     ((t (:foreground ,ample/fg :background 
,ample/dark-gray))))
+   `(custom-state                   ((t (:foreground ,ample/green :background 
nil))))
+   `(custom-themed                  ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-variable-button         ((t (:foreground nil :background nil 
:underline t :bold t))))
+   `(custom-variable-tag            ((t (:foreground ,ample/light-blue 
:background nil :bold t))))
+   `(custom-visibility              ((t (:inherit button))))
+
+   ;; widget
+   `(widget-field  ((t (:foreground ,ample/fg :background 
,ample/region-dark))))
+
    ) ;; end of custom-theme-set-faces
 
   (custom-theme-set-variables
diff --git a/ample-theme.el b/ample-theme.el
index f277de7..d92b4e2 100644
--- a/ample-theme.el
+++ b/ample-theme.el
@@ -692,6 +692,35 @@
    `(guide-key/highlight-command-face ((t (:foreground ,ample/blue))))
    `(guide-key/key-face               ((t (:foreground ,ample/gray))))
 
+   ;; custom
+   `(custom-button                  ((t (:foreground nil :background nil))))
+   `(custom-button-mouse            ((t (:foreground nil :background nil))))
+   `(custom-button-pressed          ((t (:foreground nil :background nil))))
+   `(custom-button-pressed-unraised ((t (:foreground ,ample/purple :background 
nil))))
+   `(custom-button-unraised         ((t (:foreground nil :background nil))))
+   `(custom-changed                 ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-comment                 ((t (:foreground ,ample/bg :background 
,ample/yellow))))
+   `(custom-comment-tag             ((t (:foreground ,ample/fg :background 
nil))))
+   `(custom-documentation           ((t (:foreground nil :background nil))))
+   `(custom-face-tag                ((t (:foreground ,ample/light-blue 
:background nil))))
+   `(custom-group-subtitle          ((t (:foreground nil :background nil :bold 
t))))
+   `(custom-group-tag               ((t (:foreground ,ample/light-blue 
:background nil :bold t))))
+   `(custom-group-tag-1             ((t (:foreground ,ample/yellow :background 
nil :bold t))))
+   `(custom-invalid                 ((t (:foreground ,ample/bg :background 
,ample/red))))
+   `(custom-link                    ((t (:inherit button))))
+   `(custom-modified                ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-rogue                   ((t (:foreground ,ample/yellow :background 
,ample/bg))))
+   `(custom-saved                   ((t (:foreground nil :background nil 
:underline t))))
+   `(custom-set                     ((t (:foreground ,ample/fg :background 
,ample/dark-gray))))
+   `(custom-state                   ((t (:foreground ,ample/green :background 
nil))))
+   `(custom-themed                  ((t (:foreground ,ample/red :background 
nil))))
+   `(custom-variable-button         ((t (:foreground nil :background nil 
:underline t :bold t))))
+   `(custom-variable-tag            ((t (:foreground ,ample/light-blue 
:background nil :bold t))))
+   `(custom-visibility              ((t (:inherit button))))
+
+   ;; widget
+   `(widget-field  ((t (:foreground ,ample/fg :background ,ample/dark-gray))))
+
    ) ;; end of custom-theme-set-faces
 
   (custom-theme-set-variables



reply via email to

[Prev in Thread] Current Thread [Next in Thread]