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

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

[elpa] externals/nano-theme 8b75930b35 4/5: Merge pull request #19 from


From: ELPA Syncer
Subject: [elpa] externals/nano-theme 8b75930b35 4/5: Merge pull request #19 from canatella/fix-load-theme-support
Date: Mon, 10 Oct 2022 03:57:53 -0400 (EDT)

branch: externals/nano-theme
commit 8b75930b35e6902a58e6206a2085c3be04d405d6
Merge: 58a170174e fc79c404c2
Author: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Commit: GitHub <noreply@github.com>

    Merge pull request #19 from canatella/fix-load-theme-support
    
    Refactor theme to be used with `load-theme`.
---
 nano-dark-theme.el                     |   10 +-
 nano-light-theme.el                    |   14 +-
 nano-theme.el => nano-theme-support.el |  230 ++---
 nano-theme.el                          | 1470 +-------------------------------
 4 files changed, 131 insertions(+), 1593 deletions(-)

diff --git a/nano-dark-theme.el b/nano-dark-theme.el
index 7dd9c40ef6..1112351cd4 100644
--- a/nano-dark-theme.el
+++ b/nano-dark-theme.el
@@ -34,19 +34,15 @@
 ;;
 
 ;;; Code:
-(require 'nano-theme)
+(require 'nano-theme-support)
 
+;;;###autoload
 (deftheme nano-dark
   "N Λ N O dark theme")
 
 (set-foreground-color nano-dark-foreground)
 (set-background-color nano-dark-background)
-(nano-theme 'dark)
-
-;;;###autoload
-(when load-file-name
-  (add-to-list 'custom-theme-load-path
-               (file-name-as-directory (file-name-directory load-file-name))))
+(nano-theme 'nano-dark 'dark)
 
 (provide-theme 'nano-dark)
 ;;; nano-dark-theme.el ends here
diff --git a/nano-light-theme.el b/nano-light-theme.el
index 657e6058e1..99842d8eb3 100644
--- a/nano-light-theme.el
+++ b/nano-light-theme.el
@@ -34,23 +34,15 @@
 ;;
 
 ;;; Code:
-(require 'nano-theme)
+(require 'nano-theme-support)
 
+;;;###autoload
 (deftheme nano-light
   "N Λ N O light theme")
 
 (set-foreground-color nano-light-foreground)
 (set-background-color nano-light-background)
-(nano-theme 'light)
-
-;;;###autoload
-(when load-file-name
-  (add-to-list 'custom-theme-load-path
-               (file-name-as-directory (file-name-directory load-file-name))))
+(nano-theme 'nano-light 'light)
 
 (provide-theme 'nano-light)
 ;;; nano-light-theme.el ends here
-
-
-
-
diff --git a/nano-theme.el b/nano-theme-support.el
similarity index 95%
copy from nano-theme.el
copy to nano-theme-support.el
index 8da8b1664c..31f3d9ce99 100644
--- a/nano-theme.el
+++ b/nano-theme-support.el
@@ -1,4 +1,4 @@
-;;; nano-theme.el --- N Λ N O theme -*- lexical-binding: t -*-
+;;; nano-theme-support.el --- N Λ N O theme -*- lexical-binding: t -*-
 
 ;; Copyright (C) 2021 Free Software Foundation, Inc.
 
@@ -83,7 +83,7 @@
 ;;
 ;; With GUI, you can mix frames with light and dark mode. Just call
 ;; (nano-new-frame 'light) or (nano-new-frame 'dark)
-;; 
+;;
 ;; Optionally, you can use (nano-mode) to setup recommended settings for
 ;; the theme. Be careful since it will modify your configuration and
 ;; requires a set of specific fonts. This needs to be called before
@@ -119,6 +119,7 @@
 
 ;;; Code:
 (require 'disp-table)
+(require 'cl-macs)
 
 (defgroup nano nil
   "N Λ N O"
@@ -236,7 +237,7 @@
   "Faded face is for information that are less important."
   :type 'color :group 'nano-theme-dark)
 
-(defcustom nano-dark-salient "#81A1C1" ;; Frost         / nord  9 
+(defcustom nano-dark-salient "#81A1C1" ;; Frost         / nord  9
   "Salient color is used for information that are important."
   :type 'color :group 'nano-theme-dark)
 
@@ -334,7 +335,7 @@ background color that is barely perceptible."
 
   ;; Use nano fonts
   (setq nano-fonts-use t)
-  
+
   ;; No startup  screen
   (setq inhibit-startup-screen t)
 
@@ -412,13 +413,13 @@ background color that is barely perceptible."
 
   ;; Line spacing (in pixels)
   ;; (setq line-spacing 0)
-  
+
   ;; Vertical window divider
   (setq window-divider-default-right-width 24)
   (setq window-divider-default-places 'right-only)
   (window-divider-mode 1)
 
-  ;; Nicer glyphs for continuation and wrap 
+  ;; Nicer glyphs for continuation and wrap
   (set-display-table-slot standard-display-table
                           'truncation (make-glyph-code ?… 'nano-faded))
   (set-display-table-slot standard-display-table
@@ -433,7 +434,7 @@ background color that is barely perceptible."
 
 ;; (defun inherit (face &optional inherit)
 ;;   "Extract face properties as a property list"
-  
+
 ;;   (let ((tags (list :family :foundry :width :height :weight :slant 
:underline
 ;;                     :overline :strike-through :box :inverse-video 
:foreground
 ;;                     :background :stipple :extend :inherit))
@@ -451,98 +452,98 @@ background color that is barely perceptible."
 
 (defun nano-new-frame (&optional mode)
   "This funcion creates a new frame in light or dark MODE."
-  
+
   (interactive)
   (let ((mode (or mode (frame-parameter nil 'background-mode)))
         (background-mode frame-background-mode)
         (selected-frame (selected-frame))
-        (new-frame nil))
+        (nano-theme-frame-only (make-frame-command)))
+    (nano-theme nil mode)))
 
-    ;; Set mode
-    (setq frame-background-mode mode)
-    (setq new-frame (make-frame-command))
-    (select-frame new-frame)
-
-    ;; This forces recomputation of faces on the new frame
-    (frame-set-background-mode (selected-frame))
-           
-    (when (eq mode 'light)
-      (set-foreground-color nano-light-foreground)
-      (set-background-color nano-light-background))
-
-    (when (eq mode 'dark)
-      (set-foreground-color nano-dark-foreground)
-      (set-background-color nano-dark-background))
-
-    ;; Restore background mode
-    (setq frame-background-mode background-mode)
-    (frame-set-background-mode selected-frame)
-    
-    new-frame))
 
-(defun nano-dark ()
-  "Load the nano dark theme on current frame."
+(defun nano-frame-list-advice-selected (_frames)
+  (list (selected-frame)))
+
+(defun nano-frame-list-advice-normal (frames)
+  (seq-filter (lambda (f) (not (frame-parameter f 'nano-theme-standalone))) 
frames))
 
+(defun nano-frame-enable (mode)
+  "Enable nano MODE for the current frame only."
+  (let ((frame (selected-frame))
+        (frame-background-mode mode))
+    (set-frame-parameter frame 'nano-theme-standalone mode)
+    (frame-set-background-mode frame)
+    (advice-add 'frame-list :filter-return #'nano-frame-list-advice-selected)
+    (enable-theme 'nano)
+    (advice-remove 'frame-list #'nano-frame-list-advice-selected)))
+
+(defun nano-frame-dark ()
+  "Load the nano dark theme on current frame."
   (interactive)
-   ;; (let ((parent (selected-frame))
-   ;;        (children (frame-list)))
-   ;;    (dolist (child children)
-   ;;      (when (eq (frame-parameter child 'parent-frame) parent)
-   ;;        (with-selected-frame child
-   ;;          (setq frame-background-mode 'dark)
-   ;;          (set-foreground-color nano-dark-foreground)
-   ;;          (set-background-color nano-dark-background)
-   ;;          (frame-set-background-mode child)
-   ;;          (load-theme 'nano-dark t)))))
-  ;;  (set-foreground-color nano-dark-foreground)
-  ;;   (set-background-color nano-dark-background)
-  (load-theme 'nano-dark t))
+  (nano-frame-enable 'dark))
 
-(defun nano-light ()
+(defun nano-frame-light ()
   "Load the nano light theme on current frame."
+  (interactive)
+  (nano-frame-enable 'light))
 
+(defun nano-theme-frame-toggle ()
+  "Toggle theme on current frame only."
   (interactive)
-  (load-theme 'nano-light t))
+  (if (eq (or (frame-parameter (selected-frame) 'nano-theme-standalone) 
frame-background-mode) 'light)
+      (nano-frame-dark)
+    (nano-frame-light)))
 
-(defvar nano-theme--current 'light
-  "Current nano theme")
+(defun nano-enable (mode)
+  "Enable nano MODE all other frames"
+  (advice-add 'frame-list :filter-return #'nano-frame-list-advice-normal)
+  (nano-theme 'nano mode)
+  (enable-theme 'nano)
+  (advice-remove 'frame-list #'nano-frame-list-advice-normal))
 
-(defun nano-theme-toggle ()
-  "Toggle theme on current frame."
+(defun nano-dark ()
+  "Load the nano dark theme on current frame."
+  (interactive)
+  (nano-enable 'dark))
 
+(defun nano-light ()
+  "Load the nano light theme on current frame."
   (interactive)
-  (if (eq nano-theme--current 'light)
+  (nano-enable 'light))
+
+(defun nano-theme-toggle ()
+  "Toggle theme on all frames."
+  (interactive)
+  (if (eq frame-background-mode 'light)
       (nano-dark)
     (nano-light)))
 
+(defun nano-theme (theme mode)
+  "Apply the nano THEME according to MODE which can be 'dark or 'light."
+
+   (message (format "Theme applied: %s" mode))
 
-(defun nano-theme (mode)
-  "Apply the nano theme according to MODE which can be 'dark or 'light."
+  (advice-add 'frame-list :filter-return #'nano-frame-list-advice-normal)
 
-  ;; (message (format "Theme applied: %s" mode))
-  
   (let ((light     '((background light)))
-        (dark      '((background dark)))
-        (theme      (if (eq mode 'dark)
-                       'nano-dark
-                      'nano-light)))
-    
-     (add-to-list 'default-frame-alist `(background-mode . ,mode))
-     (add-to-list 'default-frame-alist `(background-color . ,(if (eq mode 
'light)
-                                                                 
nano-light-background
-                                                               
nano-dark-background)))
-     (add-to-list 'default-frame-alist `(foreground-color . ,(if (eq mode 
'light)
-                                                                 
nano-light-foreground
-                                                               
nano-dark-foreground)))
-
-    (custom-set-variables '(widget-image-enable nil)
-                          '(x-underline-at-descent-line t))
-    
-    ;; (set-frame-parameter nil 'background-mode mode)
+        (dark      '((background dark))))
+
+
+    (setq default-frame-alist
+          (assq-delete-all 'foreground-color
+                           (assq-delete-all 'background-color
+                                            (assq-delete-all 'background-mode 
default-frame-alist))))
+    (add-to-list 'default-frame-alist `(background-mode . ,mode))
+    (add-to-list 'default-frame-alist `(background-color . ,(if (eq mode 
'light)
+                                                                
nano-light-background
+                                                              
nano-dark-background)))
+    (add-to-list 'default-frame-alist `(foreground-color . ,(if (eq mode 
'light)
+                                                                
nano-light-foreground
+                                                              
nano-dark-foreground)))
+    (custom-theme-set-variables theme '(widget-image-enable nil)
+                                '(x-underline-at-descent-line t))
     (setq frame-background-mode mode)
-    (frame-set-background-mode (selected-frame))
-    ;; (setq nano-theme--current mode)
-    ;; (frame-set-background-mode (selected-frame))
+    (mapc #'frame-set-background-mode (frame-list))
 
     (when nano-fonts-use
         (custom-theme-set-faces theme
@@ -577,15 +578,15 @@ background color that is barely perceptible."
          `(nano-strong ((,light (:weight bold :foreground ,nano-light-strong))
                         (,dark  (:weight bold :foreground 
,nano-dark-strong))))))
 
-    
+
     (custom-theme-set-faces theme
-   
-   ;; --- Base ---------------------------------------------------------   
 
-;;   `(default ((,light  (:background ,nano-light-background
-;;                        :foreground ,nano-light-foreground))
-;;              (,dark  (:background ,nano-dark-background
-;;                       :foreground ,nano-dark-foreground))))
+   ;; --- Base ---------------------------------------------------------
+
+   `(default ((,light  (:background ,nano-light-background
+                        :foreground ,nano-light-foreground))
+              (,dark  (:background ,nano-dark-background
+                       :foreground ,nano-dark-foreground))))
 
    `(cursor ((,light (:foreground ,nano-light-background
                       :background ,nano-light-foreground))
@@ -605,7 +606,7 @@ background color that is barely perceptible."
 
    `(nano-subtle-i ((,light (:foreground ,nano-light-subtle))
                     (,dark  (:foreground ,nano-dark-subtle))))
-   
+
    `(nano-faded ((,light  (:foreground ,nano-light-faded))
                  (,dark  (:foreground ,nano-dark-faded))))
 
@@ -613,7 +614,7 @@ background color that is barely perceptible."
                             :background ,nano-light-faded))
                     (,dark  (:foreground ,nano-dark-background
                              :background ,nano-dark-faded))))
-   
+
    `(nano-default ((,light  (:foreground ,nano-light-foreground))
                    (,dark  (:foreground ,nano-dark-foreground))))
 
@@ -622,7 +623,7 @@ background color that is barely perceptible."
                      (,dark  (:foreground ,nano-dark-background
                               :background ,nano-dark-foreground))))
 
-   
+
    `(nano-salient ((,light (:foreground ,nano-light-salient))
                    (,dark  (:foreground ,nano-dark-salient))))
 
@@ -631,7 +632,7 @@ background color that is barely perceptible."
                      (,dark  (:foreground ,nano-dark-background
                               :background ,nano-dark-salient))))
 
-   
+
 
    `(nano-strong-i ((,light (:foreground ,nano-light-background
                              :background ,nano-light-strong
@@ -647,7 +648,7 @@ background color that is barely perceptible."
                              :background ,nano-light-popout))
                     (,dark  (:foreground ,nano-dark-background
                              :background ,nano-dark-popout))))
-   
+
    `(nano-critical ((,light (:foreground ,nano-light-critical
                              :weight normal))
                     (,dark  (:foreground ,nano-dark-critical
@@ -659,9 +660,9 @@ background color that is barely perceptible."
                       (,dark  (:foreground ,nano-dark-background
                                :background ,nano-dark-critical
                                :weight normal))))
-   
+
    ;; --- Header & mode line -------------------------------------------
-   
+
    `(mode-line ((,light (:foreground ,nano-light-background
                          :background ,nano-light-foreground
                          :box (:line-width 3
@@ -675,7 +676,7 @@ background color that is barely perceptible."
    `(mode-line-highlight ((t (:inherit nano-popout))))
    `(mode-line-buffer-id ((t (:weight regular))))
    `(mode-line-emphasis  ((t (:weight regular))))
-               
+
    `(mode-line-inactive ((,light (:foreground ,nano-light-background
                                   :background ,nano-light-faded
                                   :box (:line-width 3
@@ -696,19 +697,19 @@ background color that is barely perceptible."
                            :inherit nil
                            :box nil))))
 
-   
+
    ;; --- Structural ---------------------------------------------------
    '(bold                        ((t (:inherit nano-strong))))
    ;; '(italic                      ((t (:slant italic))))
    '(italic                      ((t (:inherit nano-faded))))
    '(bold-italic                 ((t (:inherit nano-strong))))
-   '(region                      ((t (:inherit nano-subtle :distant-foreground 
nil))))
+   '(region                      ((t (:inherit nano-subtle :distant-foreground 
unspecified))))
    '(fringe                      ((t (:inherit (nano-faded)))))
    '(hl-line                     ((t (:inherit highlight))))
    '(link                        ((t (:inherit nano-salient))))
    '(fixed-pitch                 ((t (:inherit default))))
    '(fixed-pitch-serif           ((t (:inherit default))))
-   
+
    ;; --- Semantic -----------------------------------------------------
    '(shadow                        ((t (:inherit nano-faded))))
    '(success                       ((t (:inherit nano-salient))))
@@ -741,7 +742,7 @@ background color that is barely perceptible."
    '(tty-menu-disabled-face        ((t (:inherit nano-faded-i))))
    '(tty-menu-enabled-face         ((t (:inherit nano-default-i))))
    '(tty-menu-selected-face        ((t (:inherit nano-salient-i))))
-   
+
    ;; --- Windows divider ----------------------------------------------
    `(window-divider                ((,light (:foreground 
,nano-light-background))
                         (,dark  (:foreground ,nano-dark-background))))
@@ -755,13 +756,13 @@ background color that is barely perceptible."
    '(tab-bar-tab                   ((t (:inherit default))))
    '(tab-bar-tab-inactive          ((t (:inherit nano-faded))))
    '(tab-line                      ((t (:inherit default))))
-   
+
    ;; --- Line numbers -------------------------------------------------
    '(line-number                  ((t (:inherit nano-faded))))
    '(line-number-current-line     ((t (:inherit nil))))
    `(line-number-major-tick       ((t (:inherit nano-faded))))
    '(line-number-minor-tick       ((t (:inherit nano-faded))))
-   
+
    ;; --- Font lock ----------------------------------------------------
    '(font-lock-comment-face        ((t (:inherit nano-faded))))
    '(font-lock-doc-face            ((t (:inherit nano-faded))))
@@ -769,7 +770,7 @@ background color that is barely perceptible."
    '(font-lock-constant-face       ((t (:inherit nano-salient))))
    '(font-lock-warning-face        ((t (:inherit nano-popout))))
    '(font-lock-function-name-face  ((t (:inherit nano-strong))))
-   '(font-lock-variable-name-face  ((t (:inherit nano-strong nano-salient))))
+   '(font-lock-variable-name-face  ((t (:inherit (nano-strong nano-salient)))))
    '(font-lock-builtin-face        ((t (:inherit nano-salient))))
    '(font-lock-type-face           ((t (:inherit nano-salient))))
    '(font-lock-keyword-face        ((t (:inherit nano-salient))))
@@ -803,14 +804,14 @@ background color that is barely perceptible."
 
     '(company-tooltip-scrollbar-thumb      ((t (:inherit nano-default-i))))
     '(company-tooltip-scrollbar-track      ((t (:inherit nano-faded-i))))
-    
+
     '(company-tooltip-common               ((t (:inherit nano-strong))))
     '(company-tooltip-common-selection     ((t (:inherit nano-salient-i
                                                 :weight normal))))
     '(company-tooltip-annotation           ((t (:inherit nano-default))))
     '(company-tooltip-annotation-selection ((t (:inherit nano-subtle))))
 
-   
+
    ;; --- Buttons ------------------------------------------------------
    `(custom-button
      ((,light (:foreground ,nano-light-faded
@@ -943,7 +944,7 @@ background color that is barely perceptible."
    ;; --- Citar --------------------------------------------------------
    '(citar                          ((t (:inherit nano-faded))))
    '(citar-highlight                ((t (:inherit nano-default))))
-   
+
    ;; --- Corfu --------------------------------------------------------
    '(corfu-annotations              ((t (:inherit nano-faded))))
    '(corfu-bar                      ((t (:inherit nano-default-i))))
@@ -959,7 +960,7 @@ background color that is barely perceptible."
    '(orderless-match-face-1         ((t (:inherit (nano-strong)))))
    '(orderless-match-face-2         ((t (:inherit (nano-strong)))))
    '(orderless-match-face-3         ((t (:inherit (nano-strong)))))
-   
+
    ;; --- Message ------------------------------------------------------
    '(message-cited-text-1           ((t (:inherit nano-faded))))
    '(message-cited-text-2           ((t (:inherit nano-faded))))
@@ -985,7 +986,7 @@ background color that is barely perceptible."
    '(outline-6                      ((t (:inherit nano-strong))))
    '(outline-7                      ((t (:inherit nano-strong))))
    '(outline-8                      ((t (:inherit nano-strong))))
-   
+
    ;; --- Fly spell ----------------------------------------------------
    '(flyspell-duplicate             ((t (:inherit nano-popout
                                          :underline t))))
@@ -1117,7 +1118,7 @@ background color that is barely perceptible."
 
    ;; --- GNUS ---------------------------------------------------------
    '(gnus-button                            ((t (:inherit nano-salient))))
-   '(gnus-cite-1                            ((t (:inherit nano-faded)))) 
+   '(gnus-cite-1                            ((t (:inherit nano-faded))))
    '(gnus-cite-10                           ((t (:inherit nano-faded))))
    '(gnus-cite-11                           ((t (:inherit nano-faded))))
    '(gnus-cite-2                            ((t (:inherit nano-faded))))
@@ -1166,7 +1167,7 @@ background color that is barely perceptible."
    '(gnus-header-name                       ((t (:inherit nano-strong))))
    '(gnus-header-newsgroups                 ((t (:inherit nano-faded))))
    '(gnus-header-subject                    ((t (:inherit nano-default))))
-   
+
    '(gnus-signature                         ((t (:inherit nano-faded))))
    '(gnus-splash                            ((t (:inherit nano-faded))))
    '(gnus-summary-cancelled                 ((t (:inherit nano-faded))))
@@ -1286,9 +1287,9 @@ background color that is barely perceptible."
     '(shr-h5                              ((t (:inherit nano-strong))))
     '(shr-h6                              ((t (:inherit nano-strong))))
     '(shr-link                           ((t (:inherit nano-salient))))
-    '(shr-selected-link      ((t (:inherit nano-salient nano-subtle))))
+    '(shr-selected-link      ((t (:inherit (nano-salient nano-subtle)))))
     '(shr-strike-through                   ((t (:inherit nano-faded))))
-    
+
     ;; --- Markdown ----------------------------------------------------
     '(markdown-blockquote-face              ((t (:inherit nano-default))))
     '(markdown-bold-face                     ((t (:inherit nano-strong))))
@@ -1468,11 +1469,11 @@ background color that is barely perceptible."
     '(ansi-color-red            ((t (:foreground "#EF5350")))) ;; material 
color red L400
     '(ansi-color-bright-red     ((t (:background "#FFCDD2")))) ;; material 
color red L100
     '(ansi-color-white          ((t (:inherit nano-subtle))))
-    '(ansi-color-bright-white   ((t (:inherit default)))) 
+    '(ansi-color-bright-white   ((t (:inherit default))))
     '(ansi-color-yellow         ((t (:foreground "#FFEE58")))) ;; material 
color yellow L400
     '(ansi-color-bright-yellow  ((t (:background "#FFF9C4")))) ;; material 
color yellow L100
 
-    
+
     ;; --- Terminal ----------------------------------------------------
     '(term-bold        ((t (:inherit nano-strong))))
     '(term-color-black ((t (:inherit default))))
@@ -1494,8 +1495,13 @@ background color that is barely perceptible."
                         " *Minibuf-1*" " *Echo Area 1*"))
     (when (get-buffer buffer)
       (with-current-buffer buffer
-        (face-remap-add-relative 'default 'nano-faded)))))
+        (face-remap-add-relative 'default 'nano-faded))))
+  (advice-remove 'frame-list #'nano-frame-list-advice-selected))
 
+;;;###autoload
+(when load-file-name
+  (add-to-list 'custom-theme-load-path
+               (file-name-as-directory (file-name-directory load-file-name))))
 
-(provide 'nano-theme)
-;;; nano-theme.el ends here
+(provide 'nano-theme-support)
+;;; nano-theme-support.el ends here
diff --git a/nano-theme.el b/nano-theme.el
index 8da8b1664c..66572b4c6f 100644
--- a/nano-theme.el
+++ b/nano-theme.el
@@ -29,1473 +29,17 @@
 ;;  - a light theme that is based on Material (https://material.io/)
 ;;  - a dark theme that is based on Nord (https://www.nordtheme.com/).
 ;;
-;; A theme is fully defined by a set of (1+6) faces as
-;; explained in this paper https://arxiv.org/abs/2008.06030:
+;; A theme is fully defined by a set of (1+6) faces as explained in
+;; "On the Design of Text Editors" / https://arxiv.org/abs/2008.06030
 ;;
-;; - Default face is the face for regular information.
-;;
-;; - Critical face is for information that requires immediate action.
-;;
-;;     It should be of high constrast when compared to other
-;;     faces. This can be realized (for example) by setting an intense
-;;     background color, typically a shade of red. It must be used
-;;     scarcely.
-;;
-;; - Popout face is used for information that needs attention.
-;;
-;;     To achieve such effect, the hue of the face has to be
-;;     sufficiently different from other faces such that it attracts
-;;     attention through the popout effect.
-;;
-;; - Strong face is used for information of a structural nature.
-;;
-;;     It has to be the same color as the default color and only the
-;;     weight differs by one level (e.g., light/regular or
-;;     regular/bold). IT is generally used for titles, keywords,
-;;     directory, etc.
-;;
-;; - Salient face is used for information that are important.
-;;
-;;     To suggest the information is of the same nature but important,
-;;     the face uses a different hue with approximately the same
-;;     intensity as the default face. This is typically used for
-;;     links.
-
-;; - Faded face is for information that are less important.
-;;
-;;     It is made by using the same hue as the default but with a
-;;     lesser intensity than the default. It can be used for comments,
-;;     secondary information and also replace italic (which is
-;;     generally abused anyway
-;;
-;; - Subtle face is used to suggest a physical area on the screen.
-;;
-;;     It is important to not disturb too strongly the reading of
-;;     information and this can be made by setting a very light
-;;     background color that is barely perceptible.
-;;
-
-;; Usage example:
-;;
-;; You can use the theme as a regular theme or you can call
-;; (nano-light) / (nano-dark) explicitely to install the light or dark
-;; version.
-;;
-;; With GUI, you can mix frames with light and dark mode. Just call
-;; (nano-new-frame 'light) or (nano-new-frame 'dark)
-;; 
-;; Optionally, you can use (nano-mode) to setup recommended settings for
-;; the theme. Be careful since it will modify your configuration and
-;; requires a set of specific fonts. This needs to be called before
-;; setting the theme
-;;
-;; Recommended font is "Roboto Mono" or "Roboto Mono Nerd" if you want
-;; to benefit from all the fancy glyphs. See https://www.nerdfonts.com.
-
-;;; NEWS:
-
-;; Version 0.3.2
-;; - Fix magit diff whitespace
-;; - Update mu4e faces (1.8.x release)
-
-;; Version 0.3.1
-;; - Modified vertico and org modes
-;; - Added imenu-list, ansi-color and SHR faces
-
-;; Version 0.3.0
-;; - Added italic (Victor Mono)
-;; - Less salient critical face
-;; - Added orderles, marginalia & corfu faces
-
-;; Version 0.2.1
-;; - Added nano-modeline faces
-
-;; Version 0.2
-;; - Split light / dark themes properly
-;; - Added a nano-new-frame function
-;;
-;; Version 0.1
-;; - Submission to ELPA
 
 ;;; Code:
-(require 'disp-table)
-
-(defgroup nano nil
-  "N Λ N O"
-  :group 'convenience)
-
-(defgroup nano-theme nil
-  "N Λ N O Theme"
-  :group 'nano)
-
-(defgroup nano-theme-light nil
-  "Light color palette"
-  :group 'nano-theme)
-
-(defgroup nano-theme-dark nil
-  "Dark color palette"
-  :group 'nano-theme)
-
-(defgroup nano-theme-fonts nil
-  "Font stack"
-  :group 'nano-theme)
-
-(defcustom nano-fonts-use nil
-  "Whether to use font stack"
-  :type 'boolean :group 'nano-theme-fonts)
-
-(defface nano-mono
-  '((t (:family "Roboto Mono"
-        :height 140
-        :weight light)))
-  "Default monospaced font (Roboto Mono Light, 14pt)."
-  :group 'nano-theme-fonts)
-
-(defface nano-mono-alt
-  '((t (:family "Fira Code"
-        :height 140
-        :weight light)))
-  "Alternative monospaced font (Fira Code Light, 14pt)."
-  :group 'nano-theme-fonts)
-
-(defface nano-sans
-  '((t (:family "Roboto"
-        :height 140
-        :weight light)))
-  "Default proportional sans font (Roboto Light, 14pt)."
-  :group 'nano-theme-fonts)
-
-(defface nano-serif
-  '((t (:family "Roboto Slab"
-        :height 140
-        :weight light)))
-  "Default proportional serif font (Roboto Slab Light, 14pt)."
-  :group 'nano-theme-fonts)
-
-(defface nano-italic
-  '((t (:family "Victor Mono"
-        :slant italic
-        :height 140
-        :weight regular)))
-  "Default italic font (Victor Mono Italic Light, 14pt)."
-  :group 'nano-theme-fonts)
-
-(defcustom nano-light-foreground "#37474F" ;; Blue Grey / L800
-  "Default foreground color"
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-background "#FFFFFF" ;; White
-  "Default background color"
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-highlight "#FAFAFA" ;; Very Light Grey
-  "Highlight color is used to highlight part of the screen."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-subtle "#ECEFF1" ;; Blue Grey / L50
-  "Subtle color is used to suggest a physical area on the screen."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-faded "#90A4AE" ;; Blue Grey / L300
-  "Faded face is for information that are less important."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-salient "#673AB7" ;; Deep Purple / L500
-  "Salient color is used for information that are important."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-strong "#263238" ;; Blue Grey / L900
-  "Strong color is used for information of a structural nature."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-popout "#FFAB91" ;; Deep Orange / L200
-  "Popout colour is used for information that needs attention."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-light-critical "#FF6F00" ;; Amber / L900
-  "Critical face is for information that requires immediate action."
-  :type 'color :group 'nano-theme-light)
-
-(defcustom nano-dark-foreground "#ECEFF4" ;; Snow Storm 3  / nord  6
-  "Default foreground color"
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-background "#2E3440" ;; Polar Night 0 / nord  0
-  "Default background color"
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-highlight "#3B4252" ;; Polar Night 1 / nord  1
-  "Highdark color is used to highdark part of the screen."
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-subtle "#434C5E" ;; Polar Night 2 / nord  2
-  "Subtle color is used to suggest a physical area on the screen."
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-faded "#677691" ;;
-  "Faded face is for information that are less important."
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-salient "#81A1C1" ;; Frost         / nord  9 
-  "Salient color is used for information that are important."
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-strong "#FFFFFF" ;; White
-  "Strong color is used for information of a structural nature."
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-popout "#D08770" ;; Aurora        / nord 12
-  "Popout colour is used for information that needs attention."
-  :type 'color :group 'nano-theme-dark)
-
-(defcustom nano-dark-critical  "#EBCB8B" ;; Aurora        / nord 11
-  "Critical face is for information that requires immediate action."
-  :type 'color :group 'nano-theme-dark)
-
-(defface nano-critical nil
-  "Critical face is for information that requires immediate action.
-It should be of high constrast when compared to other faces. This
-can be realized (for example) by setting an intense background
-color, typically a shade of red. It must be used scarcely."
-  :group nil)
-
-(defface nano-critical-i nil
-  "Critical face inversed."
-  :group nil)
-
-(defface nano-popout nil
-  "Popout face is used for information that needs attention.
-To achieve such effect, the hue of the face has to be
-sufficiently different from other faces such that it attracts
-attention through the popout effect."
-  :group nil)
-
-(defface nano-popout-i nil
-  "Popout face inversed."
-  :group nil)
-
-(defface nano-strong nil
-  "Strong face is used for information of a structural nature.
-It has to be the same color as the default color and only the
-weight differs by one level (e.g., light/regular or
-regular/bold). IT is generally used for titles, keywords,
-directory, etc."
-  :group nil)
-
-(defface nano-strong-i nil
-  "Strong face inversed."
-  :group nil)
-
-(defface nano-salient nil
-  "Salient face is used for information that are important.
-To suggest the information is of the same nature but important,
-the face uses a different hue with approximately the same
-intensity as the default face. This is typically used for links."
-  :group nil)
-
-(defface nano-salient-i nil
-  "Strong face inversed."
-  :group nil)
-
-(defface nano-faded nil
-  "Faded face is for information that are less important.
-It is made by using the same hue as the default but with a lesser
-intensity than the default. It can be used for comments,
-secondary information and also replace italic (which is generally
-abused anyway)."
-  :group nil)
-
-(defface nano-faded-i nil
-  "Faded face inversed."
-  :group nil)
-
-(defface nano-subtle nil
-  "Subtle face is used to suggest a physical area on the screen.
-It is important to not disturb too strongly the reading of
-information and this can be made by setting a very light
-background color that is barely perceptible."
-  :group nil)
-
-(defface nano-subtle-i nil
-  "Subtle face inversed."
-  :group nil)
-
-(defface nano-default nil
-  "Default face."
-  :group nil)
-
-(defface nano-default-i nil
-  "Default face inversed."
-  :group nil)
-
-(defun nano-mode ()
-  "Defaults settings for nano (optional)"
-  (interactive)
-
-  ;; Use nano fonts
-  (setq nano-fonts-use t)
-  
-  ;; No startup  screen
-  (setq inhibit-startup-screen t)
-
-  ;; No startup message
-  (setq inhibit-startup-message t)
-  (setq inhibit-startup-echo-area-message t)
-
-  ;; No message in scratch buffer
-  (setq initial-scratch-message nil)
-
-  ;; Initial buffer
-  (setq initial-buffer-choice nil)
-
-  ;; No frame title
-  (setq frame-title-format nil)
-
-  ;; No file dialog
-  (setq use-file-dialog nil)
-
-  ;; No dialog box
-  (setq use-dialog-box nil)
-
-  ;; No popup windows
-  (setq pop-up-windows nil)
-
-  ;; No empty line indicators
-  (setq indicate-empty-lines nil)
-
-  ;; No cursor in inactive windows
-  (setq cursor-in-non-selected-windows nil)
-
-  ;; Text mode is initial mode
-  (setq initial-major-mode 'text-mode)
-
-  ;; Text mode is default major mode
-  (setq default-major-mode 'text-mode)
-
-  ;; Moderate font lock
-  (setq font-lock-maximum-decoration t)
-
-  ;; No limit on font lock (obsolete)
-  ;; (setq font-lock-maximum-size nil)
-
-  ;; No line break space points
-  (setq auto-fill-mode nil)
-
-  ;; Fill column at 80
-  (setq fill-column 80)
-
-  ;; Bar cursor
-  (setq-default cursor-type '(hbar .  2))
-  (setq-default cursor-in-non-selected-windows nil)
-  (setq blink-cursor-mode nil)
-
-  ;; No tooltips
-  (tooltip-mode -1)
-
-  ;; No scroll bars
-  (scroll-bar-mode -1)
-
-  ;; No toolbar
-  (tool-bar-mode -1)
-
-  ;; Default frame settings
-  (setq default-frame-alist
-        (append (list
-                 '(min-height . 1)  '(height . 45)
-                 '(min-width  . 1)  '(width  . 81)
-                 '(vertical-scroll-bars . nil)
-                 '(internal-border-width . 24)
-                 '(left-fringe . 0)
-                 '(right-fringe . 0)
-                 '(tool-bar-lines . 0)
-                 '(menu-bar-lines . 0))))
-
-  ;; Line spacing (in pixels)
-  ;; (setq line-spacing 0)
-  
-  ;; Vertical window divider
-  (setq window-divider-default-right-width 24)
-  (setq window-divider-default-places 'right-only)
-  (window-divider-mode 1)
-
-  ;; Nicer glyphs for continuation and wrap 
-  (set-display-table-slot standard-display-table
-                          'truncation (make-glyph-code ?… 'nano-faded))
-  (set-display-table-slot standard-display-table
-                          'wrap (make-glyph-code ?- 'nano-faded))
-
-  ;; Nerd font for glyph icons
-  (let ((roboto-nerd (font-spec :name "RobotoMono Nerd Font Mono")))
-    (if (find-font roboto-nerd)
-        (set-fontset-font t '(#xe000 . #xffdd) roboto-nerd)
-      (message "Roboto Mono Nerd font has not been found on your system"))))
-
-
-;; (defun inherit (face &optional inherit)
-;;   "Extract face properties as a property list"
-  
-;;   (let ((tags (list :family :foundry :width :height :weight :slant 
:underline
-;;                     :overline :strike-through :box :inverse-video 
:foreground
-;;                     :background :stipple :extend :inherit))
-;;  (properties))
-;;     (if inherit
-;;  `(:inherit ,face)
-;;       (progn
-;;  (dolist (tag tags)
-;;    (let ((attribute (face-attribute face tag)))
-;;     (when (not (eq attribute 'unspecified))
-;;       (push attribute properties)
-;;       (push tag properties)))))
-;;       properties)))
-
-
-(defun nano-new-frame (&optional mode)
-  "This funcion creates a new frame in light or dark MODE."
-  
-  (interactive)
-  (let ((mode (or mode (frame-parameter nil 'background-mode)))
-        (background-mode frame-background-mode)
-        (selected-frame (selected-frame))
-        (new-frame nil))
-
-    ;; Set mode
-    (setq frame-background-mode mode)
-    (setq new-frame (make-frame-command))
-    (select-frame new-frame)
-
-    ;; This forces recomputation of faces on the new frame
-    (frame-set-background-mode (selected-frame))
-           
-    (when (eq mode 'light)
-      (set-foreground-color nano-light-foreground)
-      (set-background-color nano-light-background))
-
-    (when (eq mode 'dark)
-      (set-foreground-color nano-dark-foreground)
-      (set-background-color nano-dark-background))
-
-    ;; Restore background mode
-    (setq frame-background-mode background-mode)
-    (frame-set-background-mode selected-frame)
-    
-    new-frame))
-
-(defun nano-dark ()
-  "Load the nano dark theme on current frame."
-
-  (interactive)
-   ;; (let ((parent (selected-frame))
-   ;;        (children (frame-list)))
-   ;;    (dolist (child children)
-   ;;      (when (eq (frame-parameter child 'parent-frame) parent)
-   ;;        (with-selected-frame child
-   ;;          (setq frame-background-mode 'dark)
-   ;;          (set-foreground-color nano-dark-foreground)
-   ;;          (set-background-color nano-dark-background)
-   ;;          (frame-set-background-mode child)
-   ;;          (load-theme 'nano-dark t)))))
-  ;;  (set-foreground-color nano-dark-foreground)
-  ;;   (set-background-color nano-dark-background)
-  (load-theme 'nano-dark t))
-
-(defun nano-light ()
-  "Load the nano light theme on current frame."
-
-  (interactive)
-  (load-theme 'nano-light t))
-
-(defvar nano-theme--current 'light
-  "Current nano theme")
-
-(defun nano-theme-toggle ()
-  "Toggle theme on current frame."
-
-  (interactive)
-  (if (eq nano-theme--current 'light)
-      (nano-dark)
-    (nano-light)))
-
-
-(defun nano-theme (mode)
-  "Apply the nano theme according to MODE which can be 'dark or 'light."
-
-  ;; (message (format "Theme applied: %s" mode))
-  
-  (let ((light     '((background light)))
-        (dark      '((background dark)))
-        (theme      (if (eq mode 'dark)
-                       'nano-dark
-                      'nano-light)))
-    
-     (add-to-list 'default-frame-alist `(background-mode . ,mode))
-     (add-to-list 'default-frame-alist `(background-color . ,(if (eq mode 
'light)
-                                                                 
nano-light-background
-                                                               
nano-dark-background)))
-     (add-to-list 'default-frame-alist `(foreground-color . ,(if (eq mode 
'light)
-                                                                 
nano-light-foreground
-                                                               
nano-dark-foreground)))
-
-    (custom-set-variables '(widget-image-enable nil)
-                          '(x-underline-at-descent-line t))
-    
-    ;; (set-frame-parameter nil 'background-mode mode)
-    (setq frame-background-mode mode)
-    (frame-set-background-mode (selected-frame))
-    ;; (setq nano-theme--current mode)
-    ;; (frame-set-background-mode (selected-frame))
-
-    (when nano-fonts-use
-        (custom-theme-set-faces theme
-         `(default ((,light (:foreground ,nano-light-foreground
-                             :weight     ,(face-attribute 'nano-mono :weight)
-                             :height     ,(face-attribute 'nano-mono :height)
-                             :family     ,(face-attribute 'nano-mono :family)))
-                    (,dark  (:foreground ,nano-dark-foreground
-                             :weight     ,(face-attribute 'nano-mono :weight)
-                             :height     ,(face-attribute 'nano-mono :height)
-                             :family     ,(face-attribute 'nano-mono 
:family)))))
-         `(italic ((,light (:foreground ,nano-light-foreground
-                             :weight     ,(face-attribute 'nano-italic :weight)
-                             :height     ,(face-attribute 'nano-italic :height)
-                             :slant      ,(face-attribute 'nano-italic :slant)
-                             :family     ,(face-attribute 'nano-italic 
:family)))
-                    (,dark  (:foreground ,nano-dark-foreground
-                             :weight     ,(face-attribute 'nano-italic :weight)
-                             :height     ,(face-attribute 'nano-italic :height)
-                             :slant      ,(face-attribute 'nano-italic :slant)
-                             :family     ,(face-attribute 'nano-italic 
:family)))))
-         `(nano-strong ((,light (:weight normal ))
-                        (,dark  (:weight normal ))))
-         `(variable-pitch  ((t (:weight ,(face-attribute 'nano-sans :weight)
-                                :height ,(face-attribute 'nano-sans :height)
-                                :family ,(face-attribute 'nano-sans 
:family)))))))
-
-    (unless nano-fonts-use
-        (custom-theme-set-faces theme
-         `(default ((,light (:foreground ,nano-light-foreground))
-                    (,dark  (:foreground ,nano-dark-foreground))))
-         `(nano-strong ((,light (:weight bold :foreground ,nano-light-strong))
-                        (,dark  (:weight bold :foreground 
,nano-dark-strong))))))
-
-    
-    (custom-theme-set-faces theme
-   
-   ;; --- Base ---------------------------------------------------------   
-
-;;   `(default ((,light  (:background ,nano-light-background
-;;                        :foreground ,nano-light-foreground))
-;;              (,dark  (:background ,nano-dark-background
-;;                       :foreground ,nano-dark-foreground))))
-
-   `(cursor ((,light (:foreground ,nano-light-background
-                      :background ,nano-light-foreground))
-             (,dark  (:foreground ,nano-dark-background
-                      :background ,nano-dark-foreground))))
-
-   `(mouse ((,light (:foreground ,nano-light-foreground
-                     :background ,nano-light-background))
-             (,dark  (:foreground ,nano-dark-foreground
-                      :background ,nano-dark-background))))
-
-   `(highlight ((,light (:background ,nano-light-highlight))
-                (,dark  (:background ,nano-dark-highlight))))
-
-   `(nano-subtle ((,light (:background ,nano-light-subtle))
-                  (,dark  (:background ,nano-dark-subtle))))
-
-   `(nano-subtle-i ((,light (:foreground ,nano-light-subtle))
-                    (,dark  (:foreground ,nano-dark-subtle))))
-   
-   `(nano-faded ((,light  (:foreground ,nano-light-faded))
-                 (,dark  (:foreground ,nano-dark-faded))))
-
-   `(nano-faded-i ((,light (:foreground ,nano-light-background
-                            :background ,nano-light-faded))
-                    (,dark  (:foreground ,nano-dark-background
-                             :background ,nano-dark-faded))))
-   
-   `(nano-default ((,light  (:foreground ,nano-light-foreground))
-                   (,dark  (:foreground ,nano-dark-foreground))))
-
-   `(nano-default-i ((,light (:foreground ,nano-light-background
-                              :background ,nano-light-foreground))
-                     (,dark  (:foreground ,nano-dark-background
-                              :background ,nano-dark-foreground))))
-
-   
-   `(nano-salient ((,light (:foreground ,nano-light-salient))
-                   (,dark  (:foreground ,nano-dark-salient))))
-
-   `(nano-salient-i ((,light (:foreground ,nano-light-background
-                              :background ,nano-light-salient))
-                     (,dark  (:foreground ,nano-dark-background
-                              :background ,nano-dark-salient))))
-
-   
-
-   `(nano-strong-i ((,light (:foreground ,nano-light-background
-                             :background ,nano-light-strong
-                             :weight normal))
-                    (,dark  (:foreground ,nano-dark-background
-                             :background ,nano-dark-strong
-                             :weight normal))))
-
-   `(nano-popout ((,light (:foreground ,nano-light-popout))
-                  (,dark  (:foreground ,nano-dark-popout))))
-
-   `(nano-popout-i ((,light (:foreground ,nano-light-background
-                             :background ,nano-light-popout))
-                    (,dark  (:foreground ,nano-dark-background
-                             :background ,nano-dark-popout))))
-   
-   `(nano-critical ((,light (:foreground ,nano-light-critical
-                             :weight normal))
-                    (,dark  (:foreground ,nano-dark-critical
-                             :weight normal))))
-
-   `(nano-critical-i ((,light (:foreground ,nano-light-background
-                               :background ,nano-light-critical
-                               :weight normal))
-                      (,dark  (:foreground ,nano-dark-background
-                               :background ,nano-dark-critical
-                               :weight normal))))
-   
-   ;; --- Header & mode line -------------------------------------------
-   
-   `(mode-line ((,light (:foreground ,nano-light-background
-                         :background ,nano-light-foreground
-                         :box (:line-width 3
-                   :color ,nano-light-foreground
-                   :style nil)))
-        (,dark  (:foreground ,nano-dark-foreground
-             :background ,nano-dark-faded
-                         :box (:line-width 3
-                   :color ,nano-dark-faded
-                   :style nil)))))
-   `(mode-line-highlight ((t (:inherit nano-popout))))
-   `(mode-line-buffer-id ((t (:weight regular))))
-   `(mode-line-emphasis  ((t (:weight regular))))
-               
-   `(mode-line-inactive ((,light (:foreground ,nano-light-background
-                                  :background ,nano-light-faded
-                                  :box (:line-width 3
-                    :color ,nano-light-faded
-                    :style nil)))
-             (,dark  (:foreground ,nano-dark-faded
-                                  :background ,nano-dark-subtle
-                                  :box (:line-width 3
-                    :color ,nano-dark-subtle
-                    :style nil)))))
-
-   `(header-line ((,light (:foreground ,nano-light-foreground
-                           :background ,nano-light-subtle
-                           :inherit nil
-                           :box nil))
-          (,dark  (:foreground ,nano-dark-foreground
-                   :background ,nano-dark-subtle
-                           :inherit nil
-                           :box nil))))
-
-   
-   ;; --- Structural ---------------------------------------------------
-   '(bold                        ((t (:inherit nano-strong))))
-   ;; '(italic                      ((t (:slant italic))))
-   '(italic                      ((t (:inherit nano-faded))))
-   '(bold-italic                 ((t (:inherit nano-strong))))
-   '(region                      ((t (:inherit nano-subtle :distant-foreground 
nil))))
-   '(fringe                      ((t (:inherit (nano-faded)))))
-   '(hl-line                     ((t (:inherit highlight))))
-   '(link                        ((t (:inherit nano-salient))))
-   '(fixed-pitch                 ((t (:inherit default))))
-   '(fixed-pitch-serif           ((t (:inherit default))))
-   
-   ;; --- Semantic -----------------------------------------------------
-   '(shadow                        ((t (:inherit nano-faded))))
-   '(success                       ((t (:inherit nano-salient))))
-   '(warning                       ((t (:inherit nano-popout))))
-   '(error                         ((t (:inherit nano-critical))))
-   '(match                         ((t (:inherit nano-popout))))
-
-   ;; --- General ------------------------------------------------------
-   '(buffer-menu-buffer            ((t (:inherit nano-strong))))
-   '(minibuffer-prompt             ((t (:inherit nano-strong))))
-   '(isearch                       ((t (:inherit nano-strong))))
-   '(isearch-fail                  ((t (:inherit nano-faded))))
-   '(show-paren-match              ((t (:inherit nano-strong))))
-   '(show-paren-mismatch           ((t (:inherit nano-critical))))
-   '(lazy-highlight                ((t (:inherit nano-subtle))))
-   '(trailing-whitespace           ((t (:inherit nano-subtle))))
-   '(secondary-selection           ((t (:inherit nano-subtle))))
-   '(completions-annotations       ((t (:inherit nano-faded))))
-   '(completions-common-part       ((t (:inherit nano-strong))))
-   '(completions-first-difference  ((t (:inherit nano-default))))
-   '(tooltip                       ((t (:inherit nano-subtle))))
-   '(read-multiple-choice-face     ((t (:inherit nano-strong))))
-   '(nobreak-hyphen                ((t (:inherit nano-popout))))
-   '(nobreak-space                 ((t (:inherit nano-popout))))
-   '(help-argument-name            ((t (:inherit nano-faded))))
-   '(tabulated-list-fake-header    ((t (:inherit nano-strong))))
-   '(tool-bar                      ((t (:inherit nano-faded-i))))
-
-   ;; --- TTY faces ----------------------------------------------------
-   '(tty-menu-disabled-face        ((t (:inherit nano-faded-i))))
-   '(tty-menu-enabled-face         ((t (:inherit nano-default-i))))
-   '(tty-menu-selected-face        ((t (:inherit nano-salient-i))))
-   
-   ;; --- Windows divider ----------------------------------------------
-   `(window-divider                ((,light (:foreground 
,nano-light-background))
-                        (,dark  (:foreground ,nano-dark-background))))
-   '(window-divider-first-pixel    ((t (:inherit window-divider))))
-   '(window-divider-last-pixel     ((t (:inherit window-divider))))
-   `(vertical-border               ((,light (:foreground 
,nano-light-background))
-                        (,dark  (:foreground ,nano-dark-background))))
-
-   ;; --- Tab bar ------------------------------------------------------
-   '(tab-bar                       ((t (:inherit default))))
-   '(tab-bar-tab                   ((t (:inherit default))))
-   '(tab-bar-tab-inactive          ((t (:inherit nano-faded))))
-   '(tab-line                      ((t (:inherit default))))
-   
-   ;; --- Line numbers -------------------------------------------------
-   '(line-number                  ((t (:inherit nano-faded))))
-   '(line-number-current-line     ((t (:inherit nil))))
-   `(line-number-major-tick       ((t (:inherit nano-faded))))
-   '(line-number-minor-tick       ((t (:inherit nano-faded))))
-   
-   ;; --- Font lock ----------------------------------------------------
-   '(font-lock-comment-face        ((t (:inherit nano-faded))))
-   '(font-lock-doc-face            ((t (:inherit nano-faded))))
-   '(font-lock-string-face         ((t (:inherit nano-faded))))
-   '(font-lock-constant-face       ((t (:inherit nano-salient))))
-   '(font-lock-warning-face        ((t (:inherit nano-popout))))
-   '(font-lock-function-name-face  ((t (:inherit nano-strong))))
-   '(font-lock-variable-name-face  ((t (:inherit nano-strong nano-salient))))
-   '(font-lock-builtin-face        ((t (:inherit nano-salient))))
-   '(font-lock-type-face           ((t (:inherit nano-salient))))
-   '(font-lock-keyword-face        ((t (:inherit nano-salient))))
-
-   ;; --- Custom edit --------------------------------------------------
-   '(widget-field                  ((t (:inherit nano-subtle))))
-   '(widget-button                 ((t (:inherit nano-strong))))
-   '(widget-single-line-field      ((t (:inherit nano-subtle))))
-   '(custom-group-subtitle         ((t (:inherit nano-strong))))
-   '(custom-group-tag              ((t (:inherit nano-strong))))
-   '(custom-group-tag-1            ((t (:inherit nano-strong))))
-   '(custom-comment                ((t (:inherit nano-faded))))
-   '(custom-comment-tag            ((t (:inherit nano-faded))))
-   '(custom-changed                ((t (:inherit nano-salient))))
-   '(custom-modified               ((t (:inherit nano-salient))))
-   '(custom-face-tag               ((t (:inherit nano-strong))))
-   '(custom-variable-tag           ((t (:inherit nano-strong))))
-   '(custom-invalid                ((t (:inherit nano-popout))))
-   '(custom-visibility             ((t (:inherit nano-salient))))
-   '(custom-state                  ((t (:inherit nano-salient))))
-   '(custom-link                   ((t (:inherit nano-salient))))
-   '(custom-variable-obsolete      ((t (:inherit nano-faded))))
-
-   ;; --- Company tooltip ----------------------------------------------
-    '(company-tooltip                      ((t (:inherit nano-subtle))))
-    '(company-tooltip-mouse                ((t (:inherit nano-faded-i))))
-    '(company-tooltip-selection            ((t (:inherit nano-salient-i))))
-
-    '(company-scrollbar-fg                 ((t (:inherit nano-default-i))))
-    '(company-scrollbar-bg                 ((t (:inherit nano-faded-i))))
-
-    '(company-tooltip-scrollbar-thumb      ((t (:inherit nano-default-i))))
-    '(company-tooltip-scrollbar-track      ((t (:inherit nano-faded-i))))
-    
-    '(company-tooltip-common               ((t (:inherit nano-strong))))
-    '(company-tooltip-common-selection     ((t (:inherit nano-salient-i
-                                                :weight normal))))
-    '(company-tooltip-annotation           ((t (:inherit nano-default))))
-    '(company-tooltip-annotation-selection ((t (:inherit nano-subtle))))
-
-   
-   ;; --- Buttons ------------------------------------------------------
-   `(custom-button
-     ((,light (:foreground ,nano-light-faded
-               :background ,nano-light-highlight
-               :box nil))
-      (,dark (:foreground ,nano-dark-faded
-              :background ,nano-dark-highlight
-              :box nil))))
-
-   `(custom-button-mouse
-     ((,light (:foreground ,nano-light-foreground
-           :background ,nano-light-subtle
-               :box nil))
-      (,dark (:foreground ,nano-dark-foreground
-          :background ,nano-dark-subtle
-              :box nil))))
-
-   `(custom-button-pressed
-     ((,light (:foreground ,nano-light-background
-           :background ,nano-light-foreground
-               :box nil))
-      (,dark (:foreground ,nano-dark-background
-          :background ,nano-dark-foreground
-              :box nil))))
-
-   ;; --- Packages -----------------------------------------------------
-   '(package-description            ((t (:inherit nano-default))))
-   '(package-help-section-name      ((t (:inherit nano-default))))
-   '(package-name                   ((t (:inherit nano-salient))))
-   '(package-status-avail-obso      ((t (:inherit nano-faded))))
-   '(package-status-available       ((t (:inherit nano-default))))
-   '(package-status-built-in        ((t (:inherit nano-salient))))
-   '(package-status-dependency      ((t (:inherit nano-salient))))
-   '(package-status-disabled        ((t (:inherit nano-faded))))
-   '(package-status-external        ((t (:inherit nano-default))))
-   '(package-status-held            ((t (:inherit nano-default))))
-   '(package-status-incompat        ((t (:inherit nano-faded))))
-   '(package-status-installed       ((t (:inherit nano-salient))))
-   '(package-status-new             ((t (:inherit nano-default))))
-   '(package-status-unsigned        ((t (:inherit nano-default))))
-
-   ;; --- Info ---------------------------------------------------------
-   '(info-node                      ((t (:inherit nano-strong))))
-   '(info-menu-header               ((t (:inherit nano-strong))))
-   '(info-header-node               ((t (:inherit nano-default))))
-   '(info-index-match               ((t (:inherit nano-salient))))
-   '(Info-quoted                    ((t (:inherit nano-faded))))
-   '(info-title-1                   ((t (:inherit nano-strong))))
-   '(info-title-2                   ((t (:inherit nano-strong))))
-   '(info-title-3                   ((t (:inherit nano-strong))))
-   '(info-title-4                   ((t (:inherit nano-strong))))
-
-   ;; --- Helpful ------------------------------------------------------
-   '(helpful-heading                ((t (:inherit nano-strong))))
-
-   ;; --- Nano modeline ------------------------------------------------
-   '(nano-modeline-active               ((t (:inherit nano-subtle))))
-   '(nano-modeline-active-name          ((t (:inherit (nano-strong 
nano-modeline-active)))))
-   '(nano-modeline-active-primary       ((t (:inherit (nano-default 
nano-modeline-active)))))
-   '(nano-modeline-active-secondary     ((t (:inherit (nano-faded 
nano-modeline-active)))))
-   '(nano-modeline-active-status-RO     ((t (:inherit (nano-subtle 
nano-strong)))))
-   '(nano-modeline-active-status-RW     ((t (:inherit (nano-faded-i 
nano-strong)))))
-   '(nano-modeline-active-status-**     ((t (:inherit (nano-popout-i 
nano-strong)))))
-
-   '(nano-modeline-inactive             ((t (:inherit nano-subtle))))
-   '(nano-modeline-inactive-name        ((t (:inherit (nano-faded 
nano-modeline-inactive)))))
-   '(nano-modeline-inactive-primary     ((t (:inherit (nano-faded 
nano-modeline-inactive)))))
-   '(nano-modeline-inactive-secondary   ((t (:inherit (nano-faded 
nano-modeline-inactive)))))
-   '(nano-modeline-inactive-status-RO   ((t (:inherit (nano-faded
-                                                       nano-strong 
nano-modeline-inactive)))))
-   '(nano-modeline-inactive-status-RW   ((t (:inherit (nano-faded
-                                                       nano-strong 
nano-modeline-inactive)))))
-   '(nano-modeline-inactive-status-**   ((t (:inherit (nano-popout
-                                                       nano-strong 
nano-modeline-inactive)))))
-
-   ;; --- nano agenda ---------------------------------------------------------
-   '(nano-agenda-button               ((t (:inherit (nano-faded)))))
-   '(nano-agenda-day-name             ((t (:inherit (nano-faded)))))
-   '(nano-agenda-default              ((t (:inherit (nano-default)))))
-   '(nano-agenda-holidays             ((t (:inherit (nano-faded)))))
-   '(nano-agenda-month-name           ((t (:inherit (nano-strong)))))
-   '(nano-agenda-mouse                ((t (:inherit (nano-highlight)))))
-   '(nano-agenda-outday               ((t (:inherit (nano-subtle-i)))))
-   '(nano-agenda-selected             ((t (:inherit (nano-default-i)))))
-   '(nano-agenda-selected-today       ((t (:inherit (nano-popout-i 
nano-strong)))))
-   '(nano-agenda-today                ((t (:inherit (nano-popout 
nano-strong)))))
-   '(nano-agenda-weekend              ((t (:inherit (nano-faded)))))
-
-   ;; --- EPA ----------------------------------------------------------
-   '(epa-field-body                 ((t (:inherit nano-default))))
-   '(epa-field-name                 ((t (:inherit nano-strong))))
-   '(epa-mark                       ((t (:inherit nano-salient))))
-   '(epa-string                     ((t (:inherit nano-popout))))
-   '(epa-validity-disabled          ((t (:inherit nano-faded))))
-   '(epa-validity-high              ((t (:inherit nano-strong))))
-   '(epa-validity-medium            ((t (:inherit nano-default))))
-   '(epa-validity-low               ((t (:inherit nano-faded))))
-
-   ;; --- Popup --------------------------------------------------------
-   '(popup-face                       ((t (:inherit highlight))))
-   '(popup-isearch-match              ((t (:inherit nano-popout))))
-   '(popup-menu-face                  ((t (:inherit nano-subtle))))
-   '(popup-menu-mouse-face            ((t (:inherit nano-faded-i))))
-   '(popup-menu-selection-face        ((t (:inherit nano-salient-i))))
-   '(popup-menu-summary-face          ((t (:inherit nano-faded))))
-   '(popup-scroll-bar-background-face ((t (:inherit nano-subtle))))
-   '(popup-scroll-bar-foreground-face ((t (:inherit nano-subtle))))
-   '(popup-summary-face               ((t (:inherit nano-faded))))
-   '(popup-tip-face                   ((t (:inherit nano-popout-i))))
-
-   ;; --- Diff ---------------------------------------------------------
-   '(diff-header                    ((t (:inherit nano-faded))))
-   '(diff-file-header               ((t (:inherit nano-strong))))
-   '(diff-context                   ((t (:inherit nano-default))))
-   '(diff-removed                   ((t (:inherit nano-faded))))
-   '(diff-changed                   ((t (:inherit nano-popout))))
-   '(diff-added                     ((t (:inherit nano-salient))))
-   '(diff-refine-added              ((t (:inherit (nano-salient
-                                                   nano-strong)))))
-   '(diff-refine-changed            ((t (:inherit nano-popout))))
-   '(diff-refine-removed            ((t (:inherit nano-faded
-                                         :strike-through t))))
-   ;; --- Vertico --------------------------------------------------------
-   '(vertico-current                       ((t (:inherit (nano-strong
-                                                          nano-subtle)))))
-   '(vertico-group-separator               ((t (:inherit nano-faded))))
-   '(vertico-group-title                   ((t (:inherit nano-faded))))
-   '(vertico-multiline                     ((t (:inherit nano-faded))))
-
-   ;; --- Citar --------------------------------------------------------
-   '(citar                          ((t (:inherit nano-faded))))
-   '(citar-highlight                ((t (:inherit nano-default))))
-   
-   ;; --- Corfu --------------------------------------------------------
-   '(corfu-annotations              ((t (:inherit nano-faded))))
-   '(corfu-bar                      ((t (:inherit nano-default-i))))
-   '(corfu-border                   ((t (:inherit nano-default-i))))
-   '(corfu-current                  ((t (:inherit highlight))))
-   '(corfu-default                  ((t (:inherit nano-subtle))))
-   '(corfu-deprecated               ((t (:inherit nano-faded))))
-   '(corfu-echo                     ((t (:inherit nano-faded))))
-
-   ;; --- Orderless ----------------------------------------------------
-   '(orderless-match-face-0         ((t (:inherit (nano-salient
-                                                   nano-strong)))))
-   '(orderless-match-face-1         ((t (:inherit (nano-strong)))))
-   '(orderless-match-face-2         ((t (:inherit (nano-strong)))))
-   '(orderless-match-face-3         ((t (:inherit (nano-strong)))))
-   
-   ;; --- Message ------------------------------------------------------
-   '(message-cited-text-1           ((t (:inherit nano-faded))))
-   '(message-cited-text-2           ((t (:inherit nano-faded))))
-   '(message-cited-text-3           ((t (:inherit nano-faded))))
-   '(message-cited-text-4           ((t (:inherit nano-faded))))
-   '(message-cited-text             ((t (:inherit nano-faded))))
-   '(message-header-cc              ((t (:inherit nano-default))))
-   '(message-header-name            ((t (:inherit nano-strong))))
-   '(message-header-newsgroups      ((t (:inherit nano-default))))
-   '(message-header-other           ((t (:inherit nano-default))))
-   '(message-header-subject         ((t (:inherit nano-salient))))
-   '(message-header-to              ((t (:inherit nano-salient))))
-   '(message-header-xheader         ((t (:inherit nano-default))))
-   '(message-mml                    ((t (:inherit nano-popout))))
-   '(message-separator              ((t (:inherit nano-faded))))
-
-   ;; --- Outline ------------------------------------------------------
-   '(outline-1                      ((t (:inherit nano-strong))))
-   '(outline-2                      ((t (:inherit nano-strong))))
-   '(outline-3                      ((t (:inherit nano-strong))))
-   '(outline-4                      ((t (:inherit nano-strong))))
-   '(outline-5                      ((t (:inherit nano-strong))))
-   '(outline-6                      ((t (:inherit nano-strong))))
-   '(outline-7                      ((t (:inherit nano-strong))))
-   '(outline-8                      ((t (:inherit nano-strong))))
-   
-   ;; --- Fly spell ----------------------------------------------------
-   '(flyspell-duplicate             ((t (:inherit nano-popout
-                                         :underline t))))
-   '(flyspell-incorrect             ((t (:inherit nano-popout
-                                         :underline t))))
-
-   ;; --- Org agenda ---------------------------------------------------
-   '(org-agenda-calendar-event      ((t (:inherit nano-default))))
-   '(org-agenda-calendar-sexp       ((t (:inherit nano-salient))))
-   '(org-agenda-clocking            ((t (:inherit nano-faded))))
-   '(org-agenda-column-dateline     ((t (:inherit nano-faded))))
-   '(org-agenda-current-time        ((t (:inherit nano-strong))))
-   '(org-agenda-date                ((t (:inherit nano-salient))))
-   '(org-agenda-date-today          ((t (:inherit (nano-salient
-                                                   nano-strong)))))
-   '(org-agenda-date-weekend        ((t (:inherit nano-faded))))
-   '(org-agenda-diary               ((t (:inherit nano-faded))))
-   '(org-agenda-dimmed-todo-face    ((t (:inherit nano-faded))))
-   '(org-agenda-done                ((t (:inherit nano-faded))))
-   '(org-agenda-filter-category     ((t (:inherit nano-faded))))
-   '(org-agenda-filter-effort       ((t (:inherit nano-faded))))
-   '(org-agenda-filter-regexp       ((t (:inherit nano-faded))))
-   '(org-agenda-filter-tags         ((t (:inherit nano-faded))))
-   '(org-agenda-property-face       ((t (:inherit nano-faded))))
-   '(org-agenda-restriction-lock    ((t (:inherit nano-faded))))
-   '(org-agenda-structure           ((t (:inherit nano-strong))))
-
-   ;; --- Org ----------------------------------------------------------
-   '(org-archived                            ((t (:inherit nano-faded))))
-   '(org-block                               ((t (:inherit highlight))))
-   `(org-block-begin-line                    ((t (:inherit nano-faded
-                                                 :underline ,(face-background 
'nano-subtle)))))
-   `(org-block-end-line                      ((t (:inherit nano-faded
-                                                 :overline ,(face-background 
'nano-subtle)))))
-   '(org-checkbox                            ((t (:inherit nano-faded))))
-   '(org-checkbox-statistics-done            ((t (:inherit nano-faded))))
-   '(org-checkbox-statistics-todo            ((t (:inherit nano-faded))))
-   '(org-clock-overlay                       ((t (:inherit nano-faded))))
-   '(org-code                                ((t (:inherit nano-salient))))
-   '(org-column                              ((t (:inherit nano-faded))))
-   '(org-column-title                        ((t (:inherit nano-faded))))
-   '(org-date                                ((t (:inherit nano-faded))))
-   '(org-date-selected                       ((t (:inherit nano-faded))))
-   '(org-default                             ((t (:inherit nano-faded))))
-   '(org-document-info                       ((t (:inherit nano-faded))))
-   '(org-document-info-keyword               ((t (:inherit nano-faded))))
-   '(org-document-title                      ((t (:inherit nano-faded))))
-   '(org-done                                ((t (:inherit nano-faded))))
-   '(org-drawer                              ((t (:inherit nano-faded))))
-   '(org-ellipsis                            ((t (:inherit nano-faded))))
-   '(org-footnote                            ((t (:inherit nano-faded))))
-   '(org-formula                             ((t (:inherit nano-faded))))
-   '(org-headline-done                       ((t (:inherit nano-faded))))
-   ;; '(org-hide                                ((t (:inherit nano-subtle-i))))
-   ;; '(org-indent                              ((t (:inherit nano-subtle-i))))
-   '(org-latex-and-related                   ((t (:inherit nano-faded))))
-   '(org-level-1                             ((t (:inherit nano-strong))))
-   '(org-level-2                             ((t (:inherit nano-strong))))
-   '(org-level-3                             ((t (:inherit nano-strong))))
-   '(org-level-4                             ((t (:inherit nano-strong))))
-   '(org-level-5                             ((t (:inherit nano-strong))))
-   '(org-level-6                             ((t (:inherit nano-strong))))
-   '(org-level-7                             ((t (:inherit nano-strong))))
-   '(org-level-8                             ((t (:inherit nano-strong))))
-   '(org-link                                ((t (:inherit nano-salient))))
-   '(org-list-dt                             ((t (:inherit nano-faded))))
-   '(org-macro                               ((t (:inherit nano-faded))))
-   '(org-meta-line                           ((t (:inherit nano-faded))))
-   '(org-mode-line-clock                     ((t (:inherit nano-faded))))
-   '(org-mode-line-clock-overrun             ((t (:inherit nano-faded))))
-   '(org-priority                            ((t (:inherit nano-faded))))
-   '(org-property-value                      ((t (:inherit nano-faded))))
-   '(org-quote                               ((t (:inherit nano-faded))))
-   '(org-scheduled                           ((t (:inherit nano-faded))))
-   '(org-scheduled-previously                ((t (:inherit nano-faded))))
-   '(org-scheduled-today                     ((t (:inherit nano-faded))))
-   '(org-sexp-date                           ((t (:inherit nano-faded))))
-   '(org-special-keyword                     ((t (:inherit nano-faded))))
-   '(org-table                               ((t (:inherit nano-faded))))
-   '(org-tag                                 ((t (:inherit nano-popout))))
-   '(org-tag-group                           ((t (:inherit nano-faded))))
-   '(org-target                              ((t (:inherit nano-faded))))
-   '(org-time-grid                           ((t (:inherit nano-faded))))
-   '(org-todo                                ((t (:inherit nano-salient))))
-   '(org-upcoming-deadline                   ((t (:inherit nano-popout))))
-   '(org-verbatim                            ((t (:inherit nano-popout))))
-   '(org-verse                               ((t (:inherit nano-faded))))
-   '(org-warning                             ((t (:inherit nano-popout))))
-
-   ;; --- Mu4e ---------------------------------------------------------
-   '(mu4e-attach-number-face                ((t (:inherit nano-strong))))
-   '(mu4e-cited-1-face                       ((t (:inherit nano-faded))))
-   '(mu4e-cited-2-face                       ((t (:inherit nano-faded))))
-   '(mu4e-cited-3-face                       ((t (:inherit nano-faded))))
-   '(mu4e-cited-4-face                       ((t (:inherit nano-faded))))
-   '(mu4e-cited-5-face                       ((t (:inherit nano-faded))))
-   '(mu4e-cited-6-face                       ((t (:inherit nano-faded))))
-   '(mu4e-cited-7-face                       ((t (:inherit nano-faded))))
-   '(mu4e-compose-header-face                ((t (:inherit nano-faded))))
-   '(mu4e-compose-separator-face             ((t (:inherit nano-faded))))
-   '(mu4e-contact-face                     ((t (:inherit nano-salient))))
-   '(mu4e-context-face                       ((t (:inherit nano-faded))))
-   '(mu4e-draft-face                         ((t (:inherit nano-faded))))
-   '(mu4e-flagged-face                     ((t (:inherit nano-salient))))
-   '(mu4e-footer-face                        ((t (:inherit nano-faded))))
-   '(mu4e-forwarded-face                   ((t (:inherit nano-default))))
-   '(mu4e-header-face                      ((t (:inherit nano-default))))
-   '(mu4e-header-highlight-face                ((t (:inherit highlight))))
-   '(mu4e-header-key-face                   ((t (:inherit nano-strong))))
-   '(mu4e-header-marks-face                  ((t (:inherit nano-faded))))
-   '(mu4e-header-title-face                 ((t (:inherit nano-strong))))
-   '(mu4e-header-value-face                ((t (:inherit nano-default))))
-   '(mu4e-highlight-face                    ((t (:inherit nano-popout))))
-   '(mu4e-link-face                        ((t (:inherit nano-salient))))
-   '(mu4e-modeline-face                      ((t (:inherit nano-faded))))
-   '(mu4e-moved-face                         ((t (:inherit nano-faded))))
-   '(mu4e-ok-face                            ((t (:inherit nano-faded))))
-   '(mu4e-region-code                        ((t (:inherit nano-faded))))
-   '(mu4e-replied-face                     ((t (:inherit nano-default))))
-   '(mu4e-special-header-value-face        ((t (:inherit nano-default))))
-   '(mu4e-system-face                        ((t (:inherit nano-faded))))
-   '(mu4e-related-face                       ((t (:inherit nano-faded))))
-   '(mu4e-title-face                        ((t (:inherit nano-strong))))
-   '(mu4e-trashed-face                       ((t (:inherit nano-faded))))
-   '(mu4e-unread-face                       ((t (:inherit nano-strong))))
-   '(mu4e-url-number-face                    ((t (:inherit nano-faded))))
-   '(mu4e-view-body-face                   ((t (:inherit nano-default))))
-   '(mu4e-warning-face                      ((t (:inherit nano-popout))))
-
-   ;; --- GNUS ---------------------------------------------------------
-   '(gnus-button                            ((t (:inherit nano-salient))))
-   '(gnus-cite-1                            ((t (:inherit nano-faded)))) 
-   '(gnus-cite-10                           ((t (:inherit nano-faded))))
-   '(gnus-cite-11                           ((t (:inherit nano-faded))))
-   '(gnus-cite-2                            ((t (:inherit nano-faded))))
-   '(gnus-cite-3                            ((t (:inherit nano-faded))))
-   '(gnus-cite-4                            ((t (:inherit nano-faded))))
-   '(gnus-cite-5                            ((t (:inherit nano-faded))))
-   '(gnus-cite-6                            ((t (:inherit nano-faded))))
-   '(gnus-cite-7                            ((t (:inherit nano-faded))))
-   '(gnus-cite-8                            ((t (:inherit nano-faded))))
-   '(gnus-cite-9                            ((t (:inherit nano-faded))))
-   '(gnus-cite-attribution                  ((t (:inherit nano-faded))))
-   '(gnus-emphasis-bold                     ((t (:inherit nano-faded))))
-   '(gnus-emphasis-bold-italic              ((t (:inherit nano-faded))))
-   '(gnus-emphasis-highlight-words          ((t (:inherit nano-faded))))
-   '(gnus-emphasis-italic                   ((t (:inherit nano-faded))))
-   '(gnus-emphasis-strikethru               ((t (:inherit nano-faded))))
-   '(gnus-emphasis-underline                ((t (:inherit nano-faded))))
-   '(gnus-emphasis-underline-bold           ((t (:inherit nano-faded))))
-   '(gnus-emphasis-underline-bold-italic    ((t (:inherit nano-faded))))
-   '(gnus-emphasis-underline-italic         ((t (:inherit nano-faded))))
-   '(gnus-group-mail-1                      ((t (:inherit nano-faded))))
-   '(gnus-group-mail-1-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-mail-2                      ((t (:inherit nano-faded))))
-   '(gnus-group-mail-2-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-mail-3                      ((t (:inherit nano-faded))))
-   '(gnus-group-mail-3-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-mail-low                    ((t (:inherit nano-faded))))
-   '(gnus-group-mail-low-empty              ((t (:inherit nano-faded))))
-   '(gnus-group-news-1                      ((t (:inherit nano-faded))))
-   '(gnus-group-news-1-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-news-2                      ((t (:inherit nano-faded))))
-   '(gnus-group-news-2-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-news-3                      ((t (:inherit nano-faded))))
-   '(gnus-group-news-3-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-news-4                      ((t (:inherit nano-faded))))
-   '(gnus-group-news-4-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-news-5                      ((t (:inherit nano-faded))))
-   '(gnus-group-news-5-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-news-6                      ((t (:inherit nano-faded))))
-   '(gnus-group-news-6-empty                ((t (:inherit nano-faded))))
-   '(gnus-group-news-low                    ((t (:inherit nano-faded))))
-   '(gnus-group-news-low-empty              ((t (:inherit nano-faded))))
-
-   '(gnus-header-content                    ((t (:inherit nano-faded))))
-   '(gnus-header-from                       ((t (:inherit nano-strong))))
-   '(gnus-header-name                       ((t (:inherit nano-strong))))
-   '(gnus-header-newsgroups                 ((t (:inherit nano-faded))))
-   '(gnus-header-subject                    ((t (:inherit nano-default))))
-   
-   '(gnus-signature                         ((t (:inherit nano-faded))))
-   '(gnus-splash                            ((t (:inherit nano-faded))))
-   '(gnus-summary-cancelled                 ((t (:inherit nano-faded))))
-   '(gnus-summary-high-ancient              ((t (:inherit nano-faded))))
-   '(gnus-summary-high-read                 ((t (:inherit nano-faded))))
-   '(gnus-summary-high-ticked               ((t (:inherit nano-faded))))
-   '(gnus-summary-high-undownloaded         ((t (:inherit nano-faded))))
-   '(gnus-summary-high-unread               ((t (:inherit nano-faded))))
-   '(gnus-summary-low-ancient               ((t (:inherit nano-faded))))
-   '(gnus-summary-low-read                  ((t (:inherit nano-faded))))
-   '(gnus-summary-low-ticked                ((t (:inherit nano-faded))))
-   '(gnus-summary-low-undownloaded          ((t (:inherit nano-faded))))
-   '(gnus-summary-low-unread                ((t (:inherit nano-faded))))
-   '(gnus-summary-normal-ancient            ((t (:inherit nano-faded))))
-   '(gnus-summary-normal-read               ((t (:inherit nano-faded))))
-   '(gnus-summary-normal-ticked             ((t (:inherit nano-faded))))
-   '(gnus-summary-normal-undownloaded       ((t (:inherit nano-faded))))
-   '(gnus-summary-normal-unread             ((t (:inherit nano-faded))))
-   '(gnus-summary-selected                  ((t (:inherit nano-faded))))
-
-   ;; --- Marginalia ---------------------------------------------------
-   '(marginalia-archive                     ((t (:inherit nano-faded))))
-   '(marginalia-char                        ((t (:inherit nano-faded))))
-   '(marginalia-date                        ((t (:inherit nano-faded))))
-   '(marginalia-documentation               ((t (:inherit nano-faded))))
-   '(marginalia-file-name                   ((t (:inherit nano-faded))))
-   '(marginalia-file-owner                  ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-dir               ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-exec              ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-link              ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-no                ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-other             ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-rare              ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-read              ((t (:inherit nano-faded))))
-   '(marginalia-file-priv-write             ((t (:inherit nano-faded))))
-   '(marginalia-function                    ((t (:inherit nano-faded))))
-   '(marginalia-installed                   ((t (:inherit nano-faded))))
-   '(marginalia-key                         ((t (:inherit nano-faded))))
-   '(marginalia-lighter                     ((t (:inherit nano-faded))))
-   '(marginalia-list                        ((t (:inherit nano-faded))))
-   '(marginalia-mode                        ((t (:inherit nano-faded))))
-   '(marginalia-modified                    ((t (:inherit nano-faded))))
-   '(marginalia-null                        ((t (:inherit nano-faded))))
-   '(marginalia-number                      ((t (:inherit nano-faded))))
-   '(marginalia-off                         ((t (:inherit nano-faded))))
-   '(marginalia-on                          ((t (:inherit nano-faded))))
-   '(marginalia-size                        ((t (:inherit nano-faded))))
-   '(marginalia-string                      ((t (:inherit nano-faded))))
-   '(marginalia-symbol                      ((t (:inherit nano-faded))))
-   '(marginalia-true                        ((t (:inherit nano-faded))))
-   '(marginalia-type                        ((t (:inherit nano-faded))))
-   '(marginalia-value                       ((t (:inherit nano-faded))))
-   '(marginalia-version                     ((t (:inherit nano-faded))))
-
-   ;; --- Elfeed -------------------------------------------------------
-    '(elfeed-log-date-face                    ((t (:inherit nano-faded))))
-    '(elfeed-log-info-level-face            ((t (:inherit nano-default))))
-    '(elfeed-log-debug-level-face           ((t (:inherit nano-default))))
-    '(elfeed-log-warn-level-face             ((t (:inherit nano-popout))))
-    '(elfeed-log-error-level-face            ((t (:inherit nano-popout))))
-    '(elfeed-search-tag-face                  ((t (:inherit nano-faded))))
-    '(elfeed-search-date-face                 ((t (:inherit nano-faded))))
-    '(elfeed-search-feed-face               ((t (:inherit nano-salient))))
-    '(elfeed-search-filter-face               ((t (:inherit nano-faded))))
-    '(elfeed-search-last-update-face        ((t (:inherit nano-salient))))
-    '(elfeed-search-title-face              ((t (:inherit nano-default))))
-    '(elfeed-search-tag-face                  ((t (:inherit nano-faded))))
-    '(elfeed-search-unread-count-face        ((t (:inherit nano-strong))))
-    '(elfeed-search-unread-title-face        ((t (:inherit nano-strong))))
-
-    ;; --- Deft --------------------------------------------------------
-    '(deft-filter-string-error-face         ((t (:inherit nano-popout))))
-    '(deft-filter-string-face              ((t (:inherit nano-default))))
-    '(deft-header-face                     ((t (:inherit nano-salient))))
-    '(deft-separator-face                    ((t (:inherit nano-faded))))
-    '(deft-summary-face                      ((t (:inherit nano-faded))))
-    '(deft-time-face                       ((t (:inherit nano-salient))))
-    '(deft-title-face                       ((t (:inherit nano-strong))))
-
-    ;; --- imenu-list ---------------------------------------------------
-    '(imenu-list-entry-face                 ((t (:inherit nano-default))))
-    '(imenu-list-entry-face-0                ((t (:inherit nano-strong))))
-    '(imenu-list-entry-face-1               ((t ( ))))
-    '(imenu-list-entry-face-2               ((t ( ))))
-    '(imenu-list-entry-face-3               ((t ( ))))
-    '(imenu-list-entry-subalist-face-0      ((t (:inherit nano-strong))))
-    '(imenu-list-entry-subalist-face-1      ((t ( ))))
-    '(imenu-list-entry-subalist-face-2      ((t ( ))))
-    '(imenu-list-entry-subalist-face-3      ((t ( ))))
-
-    ;; --- Restructured text -------------------------------------------
-    '(rst-adornment                           ((t (:inherit nano-faded))))
-    '(rst-block                             ((t (:inherit nano-default))))
-    '(rst-comment                             ((t (:inherit nano-faded))))
-    '(rst-definition                        ((t (:inherit nano-salient))))
-    '(rst-directive                         ((t (:inherit nano-salient))))
-    '(rst-emphasis1                           ((t (:inherit nano-faded))))
-    '(rst-emphasis2                          ((t (:inherit nano-strong))))
-    '(rst-external                          ((t (:inherit nano-salient))))
-    '(rst-level-1                            ((t (:inherit nano-strong))))
-    '(rst-level-2                            ((t (:inherit nano-strong))))
-    '(rst-level-3                            ((t (:inherit nano-strong))))
-    '(rst-level-4                            ((t (:inherit nano-strong))))
-    '(rst-level-5                            ((t (:inherit nano-strong))))
-    '(rst-level-6                            ((t (:inherit nano-strong))))
-    '(rst-literal                           ((t (:inherit nano-salient))))
-    '(rst-reference                         ((t (:inherit nano-salient))))
-    '(rst-transition                        ((t (:inherit nano-default))))
-
-
-    ;; ---SHR ---------------------------------------------------------
-    '(shr-abbreviation                    ((t (:inherit nano-popout))))
-    '(shr-h1                              ((t (:inherit nano-strong))))
-    '(shr-h2                              ((t (:inherit nano-strong))))
-    '(shr-h3                              ((t (:inherit nano-strong))))
-    '(shr-h4                              ((t (:inherit nano-strong))))
-    '(shr-h5                              ((t (:inherit nano-strong))))
-    '(shr-h6                              ((t (:inherit nano-strong))))
-    '(shr-link                           ((t (:inherit nano-salient))))
-    '(shr-selected-link      ((t (:inherit nano-salient nano-subtle))))
-    '(shr-strike-through                   ((t (:inherit nano-faded))))
-    
-    ;; --- Markdown ----------------------------------------------------
-    '(markdown-blockquote-face              ((t (:inherit nano-default))))
-    '(markdown-bold-face                     ((t (:inherit nano-strong))))
-    '(markdown-code-face                    ((t (:inherit nano-default))))
-    '(markdown-comment-face                   ((t (:inherit nano-faded))))
-    '(markdown-footnote-marker-face         ((t (:inherit nano-default))))
-    '(markdown-footnote-text-face           ((t (:inherit nano-default))))
-    '(markdown-gfm-checkbox-face            ((t (:inherit nano-default))))
-    '(markdown-header-delimiter-face          ((t (:inherit nano-faded))))
-    '(markdown-header-face                   ((t (:inherit nano-strong))))
-    '(markdown-header-face-1                 ((t (:inherit nano-strong))))
-    '(markdown-header-face-2                 ((t (:inherit nano-strong))))
-    '(markdown-header-face-3                 ((t (:inherit nano-strong))))
-    '(markdown-header-face-4                 ((t (:inherit nano-strong))))
-    '(markdown-header-face-5                 ((t (:inherit nano-strong))))
-    '(markdown-header-face-6                ((t (:inherit nano-strong))))
-    '(markdown-header-rule-face             ((t (:inherit nano-default))))
-    '(markdown-highlight-face               ((t (:inherit nano-default))))
-    '(markdown-hr-face                      ((t (:inherit nano-default))))
-    '(markdown-html-attr-name-face          ((t (:inherit nano-default))))
-    '(markdown-html-attr-value-face         ((t (:inherit nano-default))))
-    '(markdown-html-entity-face             ((t (:inherit nano-default))))
-    '(markdown-html-tag-delimiter-face      ((t (:inherit nano-default))))
-    '(markdown-html-tag-name-face           ((t (:inherit nano-default))))
-    '(markdown-inline-code-face              ((t (:inherit nano-popout))))
-    '(markdown-italic-face                    ((t (:inherit nano-faded))))
-    '(markdown-language-info-face           ((t (:inherit nano-default))))
-    '(markdown-language-keyword-face        ((t (:inherit nano-default))))
-    '(markdown-line-break-face              ((t (:inherit nano-default))))
-    '(markdown-link-face                    ((t (:inherit nano-salient))))
-    '(markdown-link-title-face              ((t (:inherit nano-default))))
-    '(markdown-list-face                      ((t (:inherit nano-faded))))
-    '(markdown-markup-face                    ((t (:inherit nano-faded))))
-    '(markdown-math-face                    ((t (:inherit nano-default))))
-    '(markdown-metadata-key-face              ((t (:inherit nano-faded))))
-    '(markdown-metadata-value-face            ((t (:inherit nano-faded))))
-    '(markdown-missing-link-face            ((t (:inherit nano-default))))
-    '(markdown-plain-url-face               ((t (:inherit nano-default))))
-    '(markdown-pre-face                     ((t (:inherit nano-default))))
-    '(markdown-reference-face               ((t (:inherit nano-salient))))
-    '(markdown-strike-through-face            ((t (:inherit nano-faded))))
-    '(markdown-table-face                   ((t (:inherit nano-default))))
-    '(markdown-url-face                     ((t (:inherit nano-salient))))
-
-    ;; --- Magit (WIP) ---------------------------------------------------
-    '(magit-blame-highlight                  ((t (:inherit (highlight)))))
-    '(magit-diff-added-highlight             ((t (:inherit (highlight 
nano-salient nano-strong)))))
-    '(magit-diff-base-highlight              ((t (:inherit (highlight)))))
-    '(magit-diff-context-highlight           ((t (:inherit (highlight 
nano-faded)))))
-    '(magit-diff-file-heading-highlight      ((t (:inherit (highlight 
nano-strong)))))
-    '(magit-diff-hunk-heading-highlight      ((t (:inherit (nano-default)))))
-    '(magit-diff-our-highlight               ((t (:inherit (highlight)))))
-    '(magit-diff-removed-highlight           ((t (:inherit (highlight 
nano-popout nano-strong)))))
-    '(magit-diff-revision-summary-highlight  ((t (:inherit ()))))
-    '(magit-diff-their-highlight             ((t (:inherit (highlight)))))
-    '(magit-section-highlight                ((t (:inherit (highlight)))))
-
-    '(magit-blame-heading                    ((t (:inherit (nano-subtle 
nano-strong)))))
-    '(magit-diff-conflict-heading            ((t (:inherit (nano-subtle 
nano-strong)))))
-    '(magit-diff-file-heading                ((t (:inherit (nano-strong)))))
-    '(magit-diff-hunk-heading                ((t (:inherit (nano-subtle 
nano-default)))))
-    '(magit-diff-lines-heading               ((t (:inherit (nano-subtle 
nano-strong)))))
-    '(magit-section-heading                  ((t (:inherit (nano-salient 
nano-strong)))))
-
-    '(magit-bisect-bad                       ((t (:inherit nano-default))))
-    '(magit-bisect-good                      ((t (:inherit nano-default))))
-    '(magit-bisect-skip                      ((t (:inherit nano-default))))
-    '(magit-blame-date                       ((t (:inherit nano-default))))
-    '(magit-blame-dimmed                     ((t (:inherit nano-default))))
-    '(magit-blame-hash                       ((t (:inherit nano-faded))))
-
-    '(magit-blame-margin                     ((t (:inherit nano-default))))
-    '(magit-blame-name                       ((t (:inherit nano-default))))
-    '(magit-blame-summary                    ((t (:inherit nano-default))))
-
-    '(magit-branch-current                   ((t (:inherit (nano-strong 
nano-salient)))))
-    '(magit-branch-local                     ((t (:inherit nano-salient))))
-    '(magit-branch-remote                    ((t (:inherit (nano-salient)))))
-    '(magit-branch-remote-head               ((t (:inherit (nano-salient)))))
-    '(magit-branch-upstream                  ((t (:inherit (nano-salient)))))
-
-    '(magit-cherry-equivalent                ((t (:inherit nano-default))))
-    '(magit-cherry-unmatched                 ((t (:inherit nano-default))))
-
-    '(magit-diff-added                       ((t (:inherit (highlight 
nano-salient nano-strong)))))
-    '(magit-diff-base                        ((t (:inherit nano-default))))
-    '(magit-diff-context                     ((t (:inherit (highlight 
nano-faded)))))
-    '(magit-diff-file-heading-selection      ((t (:inherit nano-default))))
-    '(magit-diff-hunk-heading-selection      ((t (:inherit nano-default))))
-    '(magit-diff-hunk-region                 ((t (:inherit nano-default))))
-    '(magit-diff-lines-boundary              ((t (:inherit nano-default))))
-    '(magit-diff-our                         ((t (:inherit nano-default))))
-    '(magit-diff-removed                     ((t (:inherit (highlight 
nano-popout nano-strong)))))
-    '(magit-diff-revision-summary            ((t (:inherit nano-popout))))
-    '(magit-diff-their                       ((t (:inherit nano-default))))
-    '(magit-diff-whitespace-warning          ((t (:inherit nano-subtle))))
-    '(magit-diffstat-added                   ((t (:inherit nano-default))))
-    '(magit-diffstat-removed                 ((t (:inherit nano-default))))
-
-    '(magit-dimmed                           ((t (:inherit nano-faded))))
-    '(magit-filename                         ((t (:inherit nano-default))))
-    '(magit-hash                             ((t (:inherit nano-faded))))
-    '(magit-head                             ((t (:inherit nano-default))))
-    '(magit-header-line                      ((t (:inherit nano-default))))
-    '(magit-header-line-key                  ((t (:inherit nano-default))))
-    '(magit-header-line-log-select           ((t (:inherit nano-default))))
-
-    '(magit-keyword                          ((t (:inherit nano-default))))
-    '(magit-keyword-squash                   ((t (:inherit nano-default))))
-
-    '(magit-log-author                       ((t (:inherit nano-default))))
-    '(magit-log-date                         ((t (:inherit nano-default))))
-    '(magit-log-graph                        ((t (:inherit nano-default))))
-
-    '(magit-mode-line-process                ((t (:inherit nano-default))))
-    '(magit-mode-line-process-error          ((t (:inherit nano-critical))))
-
-    '(magit-process-ng                       ((t (:inherit nano-default))))
-    '(magit-process-ok                       ((t (:inherit nano-default))))
-
-    '(magit-reflog-amend                     ((t (:inherit nano-default))))
-    '(magit-reflog-checkout                  ((t (:inherit nano-default))))
-    '(magit-reflog-cherry-pick               ((t (:inherit nano-default))))
-    '(magit-reflog-commit                    ((t (:inherit nano-default))))
-    '(magit-reflog-merge                     ((t (:inherit nano-default))))
-    '(magit-reflog-other                     ((t (:inherit nano-default))))
-    '(magit-reflog-rebase                    ((t (:inherit nano-default))))
-    '(magit-reflog-remote                    ((t (:inherit nano-default))))
-    '(magit-reflog-reset                     ((t (:inherit nano-default))))
-    '(magit-refname                          ((t (:inherit nano-default))))
-    '(magit-refname-pullreq                  ((t (:inherit nano-default))))
-    '(magit-refname-stash                    ((t (:inherit nano-default))))
-    '(magit-refname-wip                      ((t (:inherit nano-default))))
-
-    '(magit-section-heading-selection        ((t (:inherit nano-default))))
-    '(magit-section-secondary-heading        ((t (:inherit nano-default))))
-    '(magit-sequence-done                    ((t (:inherit nano-default))))
-    '(magit-sequence-drop                    ((t (:inherit nano-default))))
-    '(magit-sequence-exec                    ((t (:inherit nano-default))))
-    '(magit-sequence-head                    ((t (:inherit nano-default))))
-    '(magit-sequence-onto                    ((t (:inherit nano-default))))
-    '(magit-sequence-part                    ((t (:inherit nano-default))))
-    '(magit-sequence-pick                    ((t (:inherit nano-default))))
-    '(magit-sequence-stop                    ((t (:inherit nano-default))))
-
-    '(magit-signature-bad                    ((t (:inherit nano-default))))
-    '(magit-signature-error                  ((t (:inherit nano-default))))
-    '(magit-signature-expired                ((t (:inherit nano-default))))
-    '(magit-signature-expired-key            ((t (:inherit nano-default))))
-    '(magit-signature-good                   ((t (:inherit nano-default))))
-    '(magit-signature-revoked                ((t (:inherit nano-default))))
-    '(magit-signature-untrusted              ((t (:inherit nano-default))))
-
-    '(magit-tag                              ((t (:inherit nano-strong))))
-
-
-
-    ;; --- ANSI colors ----------------------------------------------------
-
-    '(ansi-color-black                       ((t (:inherit nano-default))))
-    '(ansi-color-bold                         ((t (:inherit nano-strong))))
-    '(ansi-color-bright-black                 ((t (:inherit nano-strong))))
-    '(ansi-color-faint                         ((t (:inherit nano-faded))))
-    '(ansi-color-fast-blink                    ((t (:inherit nano-faded))))
-    '(ansi-color-slow-blink                    ((t (:inherit nano-faded))))
-    '(ansi-color-inverse                   ((t (:inherit nano-default-i))))
-    '(ansi-color-italic                            ((t (:inherit italic))))
-    '(ansi-color-underline                     ((t (:inherit nano-faded))))
-    '(ansi-color-blue           ((t (:foreground "#42A5F5")))) ;; material 
color blue L400
-    '(ansi-color-bright-blue    ((t (:background "#BBDEFB")))) ;; material 
color blue L100
-    '(ansi-color-cyan           ((t (:foreground "#26C6DA")))) ;; material 
color cyan L400
-    '(ansi-color-bright-cyan    ((t (:background "#B2EBF2")))) ;; material 
color cyan L100
-    '(ansi-color-green          ((t (:foreground "#66BB6A")))) ;; material 
color green L400
-    '(ansi-color-bright-green   ((t (:background "#C8E6C9")))) ;; material 
color green L100
-    '(ansi-color-magenta        ((t (:foreground "#AB47BC")))) ;; material 
color purple L400
-    '(ansi-color-bright-magenta ((t (:background "#E1BEE7")))) ;; material 
color purple L100
-    '(ansi-color-red            ((t (:foreground "#EF5350")))) ;; material 
color red L400
-    '(ansi-color-bright-red     ((t (:background "#FFCDD2")))) ;; material 
color red L100
-    '(ansi-color-white          ((t (:inherit nano-subtle))))
-    '(ansi-color-bright-white   ((t (:inherit default)))) 
-    '(ansi-color-yellow         ((t (:foreground "#FFEE58")))) ;; material 
color yellow L400
-    '(ansi-color-bright-yellow  ((t (:background "#FFF9C4")))) ;; material 
color yellow L100
-
-    
-    ;; --- Terminal ----------------------------------------------------
-    '(term-bold        ((t (:inherit nano-strong))))
-    '(term-color-black ((t (:inherit default))))
-    '(term-color-blue ((t (:foreground "#42A5F5"        ;; material color blue 
L400
-                           :background "#BBDEFB"))))    ;; material color blue 
L100
-    '(term-color-cyan ((t (:foreground "#26C6DA"        ;; material color cyan 
L400
-                           :background "#B2EBF2"))))    ;; material color cyan 
L100
-    '(term-color-green ((t (:foreground "#66BB6A"       ;; material color 
green L400
-                            :background "#C8E6C9"))))   ;; material color 
green L100
-    '(term-color-magenta ((t (:foreground "#AB47BC"     ;; material color 
purple L400
-                              :background "#E1BEE7")))) ;; material color 
purple L100
-    '(term-color-red ((t (:foreground "#EF5350"         ;; material color red 
L400
-                          :background "#FFCDD2"))))     ;; material color red 
L100
-    '(term-color-yellow ((t (:foreground "#FFEE58"      ;; material color 
yellow L400
-                             :background "#FFF9C4"))))  ;; material color 
yellow L100
-    ))
+(require 'nano-theme-support)
 
-  (dolist (buffer (list " *Minibuf-0*" " *Echo Area 0*"
-                        " *Minibuf-1*" " *Echo Area 1*"))
-    (when (get-buffer buffer)
-      (with-current-buffer buffer
-        (face-remap-add-relative 'default 'nano-faded)))))
+;;;###autoload
+(deftheme nano "N Λ N O theme.")
 
+(nano-theme 'nano (frame-parameter (selected-frame) 'background-mode))
 
-(provide 'nano-theme)
+(provide-theme 'nano)
 ;;; nano-theme.el ends here



reply via email to

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