Skip to content

Instantly share code, notes, and snippets.

@rsuhada
Created July 17, 2018 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsuhada/e7f4aaa649fa8203311ab546621d7ab8 to your computer and use it in GitHub Desktop.
Save rsuhada/e7f4aaa649fa8203311ab546621d7ab8 to your computer and use it in GitHub Desktop.
Monokai theme tweaks
(use-package monokai-theme
:ensure t
;; :disabled
:config
(load-theme 'monokai t)
;; (setq monokai-use-variable-pitch t)
(setq org-todo-keyword-faces
'(
;; ("DONE" . (:foreground "#79740e" :weight bold :strike-through t :box (:line-width 1)))
("DONE" . (:foreground "#79740e" :weight bold :strike-through t ))
("CANCELED" . (:foreground "#79740e" :weight bold :strike-through t ))
("PARTIAL" . (:foreground "#79740e" :weight bold :strike-through t ))
("FAILED" . (:foreground "#79740e" :weight bold :strike-through t ))
("TODO" . (:foreground "#fc6754" :weight bold :height 1.0 :box (:line-width 1)))
("FOCUS" . (:foreground "#66999D" :weight bold :height 1.0 :box (:line-width 1)))
("MUST" . (:foreground "#fc6754" :weight bold :height 1.0 :box (:line-width 1)))
("OUTCOME" . (:foreground "#f1e94b" :weight bold :height 1.0 :box (:line-width 1)))
("SHOULD" . (:foreground "#8ec07c" :weight bold :box (:line-width 1)))
("COULD" . (:foreground "#fabd2f" :weight bold :box (:line-width 1)))
("WAITING" . (:foreground "#d3869b" :weight bold :box (:line-width 1)))
)
)
(set-face-background 'hl-line "#202325")
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment