;; Customize face attributes
(setq font-lock-face-attributes
;; Symbol-for-Face Foreground Background Bold Italic Underline
- '((font-lock-comment-face "DarkGreen")
+ '((font-lock-comment-face "green")
(font-lock-preprocessor-face "gray")
(font-lock-string-face "Sienna")
(font-lock-keyword-face "purple")
(font-lock-variable-name-face "Yellow")
(font-lock-type-face "Yellow")
(font-lock-reference-face "Purple")
+
+ (font-lock-builtin-face "limegreen")
+ (font-lock-constant-face "yellow")
+ (font-lock-doc-face "limegreen")
+ (font-lock-highlighting-face "limegreen")
+ (font-lock-warning-face "limegreen")
+
))
;; Load the font-lock package.
(require 'font-lock)
+
+
+
+