diff options
| author | 2025-12-22 15:21:41 -0800 | |
|---|---|---|
| committer | 2025-12-22 15:21:41 -0800 | |
| commit | f7fbbfc9ba171ebb5ca78abb319d9d0edf9cbcab (patch) | |
| tree | 255ab2b7905633765cadb5f1db98d36ee841c39b | |
| parent | 08d3c75dbc044643b822fa761bc7e1e65d718ef2 (diff) | |
| download | yoshi-theme-f7fbbfc9ba171ebb5ca78abb319d9d0edf9cbcab.tar.gz yoshi-theme-f7fbbfc9ba171ebb5ca78abb319d9d0edf9cbcab.zip | |
Add support for rainbow-identifiers-mode
| -rw-r--r-- | CHANGELOG.org | 4 | ||||
| -rw-r--r-- | yoshi-theme.el | 15 |
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG.org b/CHANGELOG.org index b128e76..ddff38f 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -17,6 +17,10 @@ All notable changes to this project will be documented in this file. This projec Add the ~compilation-mode-line-fail~ face. +** ADDED rainbow-identifiers-mode support + +Add the =rainbow-identifiers-identifier-1= through =rainbow-identifiers-identifier-10= faces. Set =rainbow-identifiers-face-count= to ~10~. + * [[https://github.com/ryuslash/yoshi-theme/compare/v6.2.0...v7.0.0][7.0.0]] -- 2023-08-01 :PROPERTIES: :CUSTOM_ID: release-7.0.0 diff --git a/yoshi-theme.el b/yoshi-theme.el index 0bdc939..e2fbb26 100644 --- a/yoshi-theme.el +++ b/yoshi-theme.el @@ -467,6 +467,18 @@ `(rainbow-delimiters-depth-9-face ((t (:foreground ,fgmagenta)))) `(rainbow-delimiters-unmatched-face ((t (:background ,bgred :foreground unspecified)))) + ;; Rainbow identifiers + `(rainbow-identifiers-identifier-1 ((t (:foreground ,brgreen)))) + `(rainbow-identifiers-identifier-2 ((t (:foreground ,brturquoise)))) + `(rainbow-identifiers-identifier-3 ((t (:foreground ,brcyan)))) + `(rainbow-identifiers-identifier-4 ((t (:foreground ,brblue)))) + `(rainbow-identifiers-identifier-5 ((t (:foreground ,brpurple)))) + `(rainbow-identifiers-identifier-6 ((t (:foreground ,brmagenta)))) + `(rainbow-identifiers-identifier-7 ((t (:foreground ,brpink)))) + `(rainbow-identifiers-identifier-8 ((t (:foreground ,brred)))) + `(rainbow-identifiers-identifier-9 ((t (:foreground ,brorange)))) + `(rainbow-identifiers-identifier-10 ((t (:foreground ,bryellow)))) + ;; Rebase mode `(rebase-mode-description-face ((t (:foreground ,yoshi-5)))) @@ -579,7 +591,8 @@ :internal-border-color ,yoshi-1 :background-color ,yoshi-1)) '(flycheck-posframe-border-width 5) - '(mode-line-buffer-identification (propertized-buffer-identification "%b")))) + '(mode-line-buffer-identification (propertized-buffer-identification "%b")) + '(rainbow-identifiers-face-count 10))) ;;;###autoload (and load-file-name |
