Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tokyo-night): Italicise comments/keywords #836

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions themes/doom-tokyo-night-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
(keywords magenta)
(methods blue)
(operators dark-cyan)
(type base8)
(type teal)
(strings dark-green)
(variables base8)
(numbers orange)
Expand Down Expand Up @@ -150,10 +150,12 @@

(font-lock-comment-face
:foreground comments
:background (if doom-tokyo-night-comment-bg (doom-lighten bg 0.05) 'unspecified))
:background (if doom-tokyo-night-comment-bg (doom-lighten bg 0.05) 'unspecified)
:slant 'italic)
(font-lock-doc-face
:inherit 'font-lock-comment-face
:foreground doc-comments)
(font-lock-keyword-face :foreground keywords :slant 'italic)

;;; Doom Modeline
(doom-modeline-bar :background (if -modeline-bright modeline-bg highlight))
Expand All @@ -171,6 +173,11 @@
(mode-line-buffer-id
:foreground highlight)

;;; Doom Dashboard
(doom-dashboard-banner :foreground comments :slant 'normal)
(doom-dashboard-loaded :foreground comments :slant 'normal)
(doom-dashboard-menu-title :foreground magenta :slant 'normal)

;;; Indentation
(whitespace-indentation :background bg)
(whitespace-tab :background bg)
Expand Down Expand Up @@ -271,6 +278,7 @@
;;; web-mode
(web-mode-json-context-face :foreground brown)
(web-mode-json-key-face :foreground teal)
(web-mode-keyword-face :inherit 'font-lock-keyword-face)
;;;; Block
(web-mode-block-delimiter-face :foreground yellow)
;;;; Code
Expand All @@ -280,6 +288,8 @@
(web-mode-css-pseudo-class-face :foreground orange)
(web-mode-css-property-name-face :foreground blue)
(web-mode-css-selector-face :foreground teal)
(web-mode-css-selector-class-face :foreground keywords :slant 'normal)
(web-mode-css-selector-tag-face :inherit 'web-mode-css-selector-class-face)
(web-mode-css-function-face :foreground yellow)
;;;; HTML
(web-mode-html-attr-engine-face :foreground yellow)
Expand Down