branch: elpa/gruvbox-theme
commit b3a85729a2624ed207f1ff7786b97c0493af934b
Author: Enrique Kessler Martínez <[email protected]>
Commit: Jason Milkins <[email protected]>

    Add font-lock-number and font-lock-property faces
    
    These two faces are used with font-lock to fontify different aspects of
    the buffers. In particular, if using the new treesit feature in Emacs
    29, numbers on tree-sitter enabled buffers will appear blank.
    
    Also, considering members use bright_purple, let's stick
    to bright_purple on properties too. It was defaulting to the built-in
    one, making the fontified buffer really "orange" on dark mode.
---
 gruvbox.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gruvbox.el b/gruvbox.el
index 0193560088..f478c3e94b 100644
--- a/gruvbox.el
+++ b/gruvbox.el
@@ -113,8 +113,10 @@ Should contain 2 %s constructs to allow for theme name and 
directory/prefix")
      (font-lock-function-name-face                      (:foreground 
gruvbox-bright_yellow))
      (font-lock-keyword-face                            (:foreground 
gruvbox-bright_red))
      (font-lock-string-face                             (:foreground 
gruvbox-bright_green))
+     (font-lock-number-face                             (:foreground 
gruvbox-bright_purple))
      (font-lock-variable-name-face                      (:foreground 
gruvbox-bright_blue))
      (font-lock-type-face                               (:foreground 
gruvbox-bright_purple))
+     (font-lock-property-face                           (:foreground 
gruvbox-bright_purple))
      (font-lock-warning-face                            (:foreground 
gruvbox-bright_red :bold t))
 
      ;;; Basic faces

Reply via email to