(let ((green "#07d101")
(blue "#00bfff")
(cream "#edf0e0")
(pink "#f584c6")
(red "#f85624")
(dustypink "#d8916e")
(navy "#0047ab")
(gray "#c0c0c0")
(greenyellow "#adff2f")
(electriclime "#ccff00")
(darkgreen "#228b22")
(lightpink "#ffb7c5")
(gold "#ffd700"))
(set-face-attribute 'default nil :background "none")
(set-face-attribute 'region nil :background blue)
(set-face-attribute 'font-lock-comment-face nil :foreground gray)
(set-face-attribute 'font-lock-constant-face nil :foreground pink)
(set-face-attribute 'font-lock-string-face nil :foreground lightpink)
(set-face-attribute 'font-lock-number-face nil :foreground gold)
(set-face-attribute 'font-lock-variable-name-face nil :foreground greenyellow :weight 'bold)
(set-face-attribute 'font-lock-function-name-face nil :foreground gold)
(set-face-attribute 'font-lock-keyword-face nil :foreground green)
(set-face-attribute 'font-lock-operator-face nil :foreground cream)
(set-face-attribute 'font-lock-preprocessor-face nil :foreground dustypink)
(set-face-attribute 'font-lock-type-face nil :foreground blue)
(set-face-attribute 'escape-glyph nil :foreground pink)
(set-face-attribute 'font-lock-warning-face nil :foreground navy :background cream :weight 'bold)
(set-face-attribute 'isearch nil :foreground cream)
)
(provide 'face)