Compare commits
	
		
			6 Commits
		
	
	
		
			9858d181c1
			...
			e9dbe815bb
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					e9dbe815bb | ||
| 3d984e1183 | |||
| 26551fcda4 | |||
| 4576c6c89c | |||
| 61facfb767 | |||
| 32b00f23ee | 
@ -44,7 +44,7 @@ To enable custom fringe bitmaps for [flymake](https://www.emacswiki.org/emacs/Fl
 | 
				
			|||||||
## Feedback
 | 
					## Feedback
 | 
				
			||||||
 | 
					
 | 
				
			||||||
If you experience any issues with this package, please
 | 
					If you experience any issues with this package, please
 | 
				
			||||||
[open an issue](https://gitlab.com/jessieh/adwaita-dark-theme/issues/new)
 | 
					[open an issue](https://git.tty.dog/jessieh/adwaita-dark-theme/issues/new)
 | 
				
			||||||
on the issue tracker.
 | 
					on the issue tracker.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Suggestions for improvements and feature requests are always appreciated, as well!
 | 
					Suggestions for improvements and feature requests are always appreciated, as well!
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@
 | 
				
			|||||||
;; Author: Jessie Hildebrandt <jessieh.net>
 | 
					;; Author: Jessie Hildebrandt <jessieh.net>
 | 
				
			||||||
;; Homepage: https://gitlab.com/jessieh/adwaita-dark-theme
 | 
					;; Homepage: https://gitlab.com/jessieh/adwaita-dark-theme
 | 
				
			||||||
;; Keywords: mode-line faces
 | 
					;; Keywords: mode-line faces
 | 
				
			||||||
;; Version: 1.1.1
 | 
					;; Version: 1.2.0
 | 
				
			||||||
;; Package-Requires: ((emacs "27.1"))
 | 
					;; Package-Requires: ((emacs "27.1"))
 | 
				
			||||||
;;
 | 
					;;
 | 
				
			||||||
;; This file is not part of GNU Emacs.
 | 
					;; This file is not part of GNU Emacs.
 | 
				
			||||||
@ -174,6 +174,7 @@
 | 
				
			|||||||
       ;; [True color | 256-compatible]
 | 
					       ;; [True color | 256-compatible]
 | 
				
			||||||
       (fg (if true-color-available-p "#deddda" "gray86"))               ; #dbdbdb
 | 
					       (fg (if true-color-available-p "#deddda" "gray86"))               ; #dbdbdb
 | 
				
			||||||
       (fg-alt (if true-color-available-p "#77767b" "gray47"))           ; #787878
 | 
					       (fg-alt (if true-color-available-p "#77767b" "gray47"))           ; #787878
 | 
				
			||||||
 | 
					       (fg-osd (if true-color-available-p "#f0f0f0" "gray94"))           ; #f0f0f0
 | 
				
			||||||
       (gray (if true-color-available-p "#3d3846" "gray23"))             ; #3b3b3b
 | 
					       (gray (if true-color-available-p "#3d3846" "gray23"))             ; #3b3b3b
 | 
				
			||||||
       (red (if true-color-available-p "#ff6c6b" "indianred2"))          ; #ee6363
 | 
					       (red (if true-color-available-p "#ff6c6b" "indianred2"))          ; #ee6363
 | 
				
			||||||
       (orange (if true-color-available-p "#ffa348" "orange2"))          ; #ee9a00
 | 
					       (orange (if true-color-available-p "#ffa348" "orange2"))          ; #ee9a00
 | 
				
			||||||
@ -209,7 +210,7 @@
 | 
				
			|||||||
   `(cursor ((,class (:background ,fg))))
 | 
					   `(cursor ((,class (:background ,fg))))
 | 
				
			||||||
   `(shadow ((,class (:foreground ,base-5))))
 | 
					   `(shadow ((,class (:foreground ,base-5))))
 | 
				
			||||||
   `(minibuffer-prompt ((,class (:foreground ,base-7))))
 | 
					   `(minibuffer-prompt ((,class (:foreground ,base-7))))
 | 
				
			||||||
   `(tooltip ((,class (:background ,bg-osd :foreground ,fg))))
 | 
					   `(tooltip ((,class (:background ,bg-osd :foreground ,fg-osd))))
 | 
				
			||||||
   `(secondary-selection ((,class (:background ,gray))))
 | 
					   `(secondary-selection ((,class (:background ,gray))))
 | 
				
			||||||
   `(fill-column-indicator ((,class (:foreground ,base-3))))
 | 
					   `(fill-column-indicator ((,class (:foreground ,base-3))))
 | 
				
			||||||
   `(match ((,class (:foreground ,green :weight bold))))
 | 
					   `(match ((,class (:foreground ,green :weight bold))))
 | 
				
			||||||
@ -567,6 +568,10 @@
 | 
				
			|||||||
   `(diff-hl-delete ((,class (:foreground ,red))))
 | 
					   `(diff-hl-delete ((,class (:foreground ,red))))
 | 
				
			||||||
   `(diff-hl-insert ((,class (:foreground ,green))))
 | 
					   `(diff-hl-insert ((,class (:foreground ,green))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   ;; eldoc-box
 | 
				
			||||||
 | 
					   `(eldoc-box-body ((,class (:inherit (tooltip variable-pitch-text)))))
 | 
				
			||||||
 | 
					   `(eldoc-box-border ((,class (:background ,base-3))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   ;; fic-mode
 | 
					   ;; fic-mode
 | 
				
			||||||
   `(fic-face ((,class (:foreground ,yellow :weight bold))))
 | 
					   `(fic-face ((,class (:foreground ,yellow :weight bold))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -841,7 +846,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
   ;; tempel
 | 
					   ;; tempel
 | 
				
			||||||
   `(tempel-form ((,class (:foreground unspecified))))
 | 
					   `(tempel-form ((,class (:foreground unspecified))))
 | 
				
			||||||
   `(tempel-field ((,class (:foreground unspecified))))
 | 
					   `(tempel-field ((,class (:foreground unspecified :underline (:color ,base-5)))))
 | 
				
			||||||
   `(tempel-default ((,class (:foreground unspecified :underline t))))
 | 
					   `(tempel-default ((,class (:foreground unspecified :underline t))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   ;; transient
 | 
					   ;; transient
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user