~protesilaos/modus-themes

Add support for crontab-mode v1 APPLIED

Antonio Ruiz: 1
 Add support for crontab-mode

 1 files changed, 7 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~protesilaos/modus-themes/patches/35080/mbox | git am -3
Learn more about email & git

[PATCH] Add support for crontab-mode Export this patch

Hello Prot,

Lets add crontab-mode support. The foreground colors were taken from the
definitions of the modus-themes-heading-N faces with the rainbow option enabled.
Sincerely,
Tony
--- modus-themes.el | 7 +++++++ 1 file changed, 7 insertions(+)

diff --git a/modus-themes.el b/modus-themes.el
index c4edb1e..4a77e0b 100644
--- a/modus-themes.el
+++ b/modus-themes.el
@@ -4824,6 +4824,13 @@ by virtue of calling either of `modus-themes-load-operandi' and
    `(cperl-nonoverridable-face ((,class :foreground unspecified)))
    `(cperl-array-face ((,class :inherit font-lock-keyword-face)))
    `(cperl-hash-face ((,class :inherit font-lock-variable-name-face)))
;;;;; crontab-mode
 `(crontab-minute ((,class :foreground ,blue-alt)))
 `(crontab-hour ((,class :foreground ,magenta-alt-other)))
 `(crontab-month-day ((,class :foreground ,magenta-alt)))
 `(crontab-month ((,class :foreground ,blue)))
 `(crontab-week-day ((,class :foreground ,cyan)))
 `(crontab-predefined ((,class :foreground ,blue-alt)))
 ;;;;; css-mode
     `(css-property ((,class :inherit font-lock-type-face)))
     `(css-selector ((,class :inherit font-lock-keyword-face)))
-- 
2.37.2
Hello Tony,