Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save underhilllabs/976760 to your computer and use it in GitHub Desktop.
Save underhilllabs/976760 to your computer and use it in GitHub Desktop.
orgmode variables for an emacs color theme from color-theme-leuven.el
;; Org
(org-agenda-clocking ((t ,clock-line)))
(org-agenda-column-dateline ((t (:inherit org-column))))
;; (org-agenda-column-dateline ((t (:background "deep sky blue" :height 79 :family "Consolas"))))
(org-agenda-current-time ((t (:weight bold :underline t :foreground "purple"))))
(org-agenda-date ((t (:height 1.6 :weight bold :foreground "#0063F5")))) ; "#87C9FC"
(org-agenda-date-today ((t (:height 1.6 :weight bold :foreground "purple")))) ; "#CCCCFF" ; inherit
(org-agenda-date-weekend ((t (:height 1.6 :weight bold :foreground "dim gray")))) ; "#B6B2AE" ; inherit
(org-agenda-diary ((t (:weight bold :foreground "green4" :background "light blue"))))
(org-agenda-dimmed-todo-face ((t (:foreground "gold2")))) ; org-blocked-todo
(org-agenda-done ((t (:foreground "gray50" :background "#EAFFEA"))))
(org-agenda-restriction-lock ((t (:foreground "white" :background "SkyBlue4"))))
(org-agenda-structure ((t (:weight bold :foreground "white" :background "#0099FF"))))
(org-archived ((t (:foreground "gray70"))))
(org-beamer-tag ((t (:box (:line-width 1 :color "#00CC00" :style nil)))))
(org-block ((t ,block-code)))
(org-block-background ((t (:background "#FFFFEA"))))
(org-block-begin-line ((t (:underline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
(org-block-end-line ((t (:overline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
(org-checkbox ((t (:weight bold :foreground "white" :background "#777777" :box (:line-width 1 :style pressed-button)))))
(org-clock-overlay ((t (:foreground "white" :background "SkyBlue4"))))
(org-code ((t (:foreground "#0077CC" :background "#EAFFEA"))))
(org-column ((t ,column)))
;; (org-column ((t (:background "gold" :height 79 :family "Consolas"))))
(org-column-title ((t (:inherit org-column))))
;; (org-column-title ((t (:background "gold" :height 79 :family "Consolas"))))
(org-date ((t (:underline t :foreground "purple"))))
(org-dim ((t (:foreground "#AAAAAA"))))
(org-document-info ((t (:foreground "midnight blue"))))
(org-document-info-keyword ((t (:foreground "#008ED1" :background "#EAEAFF"))))
(org-document-title ((t (:family "Sans Serif" :height 1.8 :weight bold :foreground "blue"))))
(org-done ((t (:weight bold :box (:line-width 1 :color "#666666") :foreground "white" :background "#888888"))))
(org-drawer ((t (:foreground "light sky blue"))))
(org-ellipsis ((t (:underline "#B0EEB0" :foreground "#00BB00"))))
(org-example ((t (:foreground "blue" :background "#EAFFEA"))))
(org-footnote ((t (:underline t :foreground "#008ED1"))))
(org-formula ((t (:foreground "chocolate1"))))
(org-headline-done ((t (:height 1.0 :weight bold :strike-through t :foreground "#A7A6AA")))) ; 1.4
(org-hide ((t (:foreground "#666666" :background "#FFFFCC"))))
(org-latex-and-export-specials ((t (:foreground "blue"))))
(org-level-1 ((t ,ol1)))
(org-level-2 ((t ,ol2)))
(org-level-3 ((t ,ol3)))
(org-level-4 ((t ,ol4)))
(org-level-5 ((t ,ol5)))
(org-level-6 ((t ,ol6)))
(org-level-7 ((t ,ol7)))
(org-level-8 ((t ,ol8)))
(org-link ((t (:underline t :foreground "#0077CC"))))
(org-meta-line ((t (:foreground "#008ED1" :background "#EAEAFF"))))
(org-mode-line-clock ((t ,clock-line)))
(org-mode-line-clock-overrun ((t (:weight bold :box (:line-width 1 :color "#FFBB00") :foreground "white" :background "#FF4040"))))
(org-property-value ((t (nil))))
(org-quote ((t (:slant italic :foreground "dim gray"))))
(org-scheduled ((t (:foreground "#0077CC"))))
(org-scheduled-previously ((t (:foreground "#0077CC"))))
(org-scheduled-today ((t (:slant italic :foreground "purple"))))
(org-sexp-date ((t (:foreground "purple"))))
(org-special-keyword ((t (:foreground "#00BB00" :background "#EAFFEA"))))
(org-table ((t (:foreground "blue" :background "#EAFFEA"))))
(org-tag ((t (:height 1.0 :weight normal :slant italic :foreground "#816A7D" :background "#F7B8DE"))))
(org-target ((t (:underline t))))
(org-time-grid ((t (:foreground "#008ED1"))))
(org-todo ((t (:weight bold :box (:line-width 1 :color "red3") :foreground "white" :background "#FF5555"))))
(org-upcoming-deadline ((t (:foreground "#FF5555"))))
;; (org-upcoming-deadline ((t (:foreground "white" :background "#E9A36A" :weight bold))))
(org-verbatim ((t ,inline-code)))
(org-verse ((t (:slant italic :foreground "dim gray" :background "#EEEEEE"))))
(org-warning ((t (:weight bold :box (:line-width 1 :color "#4488BB") :foreground "#5C88D3" :background "#BBDDFF"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment