Skip to content

Commit

Permalink
Organize theme.el a touch
Browse files Browse the repository at this point in the history
  • Loading branch information
camdez committed May 28, 2019
1 parent 869bd96 commit 742226a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions core/theme.el
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
;;; theme.el --- make things look pretty
;;; Author: Cameron Desautels <camdez@gmail.com>

;;; Set up the basics
(set-foreground-color "white")
(set-background-color "black")

; use `current-frame-configuration' to check
(setq frame-inherited-parameters
'(font fontsize background-color foreground-color))

;;; Load the main theme
(load-theme 'monokai t)

;;; Tweak additional faces
(eval-after-load 'paren
'(progn
(set-face-foreground 'show-paren-match "black")
(set-face-background 'show-paren-match "red")))

(load-theme 'monokai t)

(set-face-background 'trailing-whitespace "gray19")

(eval-after-load 'diff-mode
Expand Down

0 comments on commit 742226a

Please sign in to comment.