Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

Latest commit

 

History

History
128 lines (95 loc) · 2.5 KB

Theme.org

File metadata and controls

128 lines (95 loc) · 2.5 KB

Custom Theme

Initialise Autothemer

;; Require the Autothemer package
(require 'autothemer)

Define Theme

;; Name and description are completely your choice
(autothemer-deftheme
 custom "A Custom Theme made by Kavin Desi Valli"

Define Colours

((((class color) (min-colors #xFFFFFF)))
 (custom-dark      "#080b0f")
 ;; (custom-dark-100 "#1c1c1c")
 (custom-dark-100 "#101820")
 (custom-dark-200 "#8a8a8a")
 (custom-light      "#ffffff")
 (custom-black      "#000")
 (custom-light-blue "#64bced")
 (custom-light-blue-100 "#00d5ff")
 (custom-cyan       "#4DD0E1")
 (custom-dk-gray    "#757575")
 (custom-yellow  "#fee715")
 (custom-pink    "#ff6be9")
 (custom-orange  "#D7C49E")
 (custom-orange-100 "#ffaa00")
 (custom-pale-100 "#F2AA4C")
 (custom-red     "HotPink2")
 (custom-green   "LightGreen")
 )

Colour Integration

  • Tip: To know the face, get your cursor on the thing, and then run M-x describe-face

Default Colour

((default (:foreground custom-light :background custom-dark))

Cursor

(cursor (:background custom-light))

Fonts

Keyword

(font-lock-keyword-face (:foreground custom-light-blue))

Comment

;; This is what a comment looks like
(font-lock-comment-face (:foreground custom-dark-200))

String

(font-lock-string-face (:foreground custom-yellow))

Org Mode

Metadata

Keyword

(org-document-info-keyword (:foreground custom-dk-gray))

Line

(org-meta-line (:foreground custom-cyan))

Headings

Level 1

(org-level-1 (:foreground custom-pink))

Level 2

(org-level-2 (:foreground custom-orange))

Single line code

(org-verbatim (:foreground custom-green :background custom-black))

Org Block

(org-block-begin-line (:background custom-dark-100 :foreground custom-pale-100))
(org-block (:background custom-dark-100))

End of Colour Integration

)

End of Theme

)