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

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

[nongnu] elpa/gotham-theme a584d2fe75 014/214: Use standard names for bo


From: ELPA Syncer
Subject: [nongnu] elpa/gotham-theme a584d2fe75 014/214: Use standard names for boolean variables
Date: Fri, 7 Jan 2022 17:58:36 -0500 (EST)

branch: elpa/gotham-theme
commit a584d2fe75d0b9fbc8cae1d5445c9fe8399d0a6a
Author: Vasilij Schneidermann <v.schneidermann@gmail.com>
Commit: Vasilij Schneidermann <v.schneidermann@gmail.com>

    Use standard names for boolean variables
---
 gotham-theme.el | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/gotham-theme.el b/gotham-theme.el
index 4806d1ff1e..452f2a2004 100644
--- a/gotham-theme.el
+++ b/gotham-theme.el
@@ -44,7 +44,7 @@
 
 ;; TODO test with ruby, python, tex, c, html
 
-(defcustom gotham-tty-extended-palette-p nil
+(defcustom gotham-tty-extended-palette nil
   "Use the extended 256-color palette in the terminal?
 When t, assume a regular 256-color palette, otherwise assume a
 customized 16-color palette."
@@ -54,23 +54,23 @@ customized 16-color palette."
 
 (setq gotham-tty-switch 'extended)
 (defvar gotham-color-alist
-  `((base0   "#0c1014" ,(if gotham-tty-extended-palette-p "color-232" "black"))
-    (base1   "#11151c" ,(if gotham-tty-extended-palette-p "color-233" 
"brightblack"))
-    (base2   "#091f2e" ,(if gotham-tty-extended-palette-p "color-17"  
"brightgreen"))
-    (base3   "#0a3749" ,(if gotham-tty-extended-palette-p "color-18"  
"brightblue"))
-    (base4   "#245361" ,(if gotham-tty-extended-palette-p "color-24"  
"brightyellow"))
-    (base5   "#599cab" ,(if gotham-tty-extended-palette-p "color-81"  
"brightcyan"))
-    (base6   "#99d1ce" ,(if gotham-tty-extended-palette-p "color-122" "white"))
-    (base7   "#d3ebe9" ,(if gotham-tty-extended-palette-p "color-194" 
"brightwhite"))
-
-    (red     "#c23127" ,(if gotham-tty-extended-palette-p "color-124" "red"))
-    (orange  "#d26937" ,(if gotham-tty-extended-palette-p "color-166" 
"brightred"))
-    (yellow  "#edb443" ,(if gotham-tty-extended-palette-p "color-214" 
"yellow"))
-    (magenta "#888ca6" ,(if gotham-tty-extended-palette-p "color-67"  
"brightmagenta"))
-    (violet  "#4e5166" ,(if gotham-tty-extended-palette-p "color-60"  
"magenta"))
-    (blue    "#195466" ,(if gotham-tty-extended-palette-p "color-24"  "blue"))
-    (cyan    "#33859e" ,(if gotham-tty-extended-palette-p "color-44"  "cyan"))
-    (green   "#2aa889" ,(if gotham-tty-extended-palette-p "color-78"  
"green")))
+  `((base0   "#0c1014" ,(if gotham-tty-extended-palette "color-232" "black"))
+    (base1   "#11151c" ,(if gotham-tty-extended-palette "color-233" 
"brightblack"))
+    (base2   "#091f2e" ,(if gotham-tty-extended-palette "color-17"  
"brightgreen"))
+    (base3   "#0a3749" ,(if gotham-tty-extended-palette "color-18"  
"brightblue"))
+    (base4   "#245361" ,(if gotham-tty-extended-palette "color-24"  
"brightyellow"))
+    (base5   "#599cab" ,(if gotham-tty-extended-palette "color-81"  
"brightcyan"))
+    (base6   "#99d1ce" ,(if gotham-tty-extended-palette "color-122" "white"))
+    (base7   "#d3ebe9" ,(if gotham-tty-extended-palette "color-194" 
"brightwhite"))
+
+    (red     "#c23127" ,(if gotham-tty-extended-palette "color-124" "red"))
+    (orange  "#d26937" ,(if gotham-tty-extended-palette "color-166" 
"brightred"))
+    (yellow  "#edb443" ,(if gotham-tty-extended-palette "color-214" "yellow"))
+    (magenta "#888ca6" ,(if gotham-tty-extended-palette "color-67"  
"brightmagenta"))
+    (violet  "#4e5166" ,(if gotham-tty-extended-palette "color-60"  "magenta"))
+    (blue    "#195466" ,(if gotham-tty-extended-palette "color-24"  "blue"))
+    (cyan    "#33859e" ,(if gotham-tty-extended-palette "color-44"  "cyan"))
+    (green   "#2aa889" ,(if gotham-tty-extended-palette "color-78"  "green")))
   "List of colors the theme consists of.")
 
 (defun gotham-set-faces (faces)



reply via email to

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