Skip to content

Instantly share code, notes, and snippets.

@dillongreen
Created November 17, 2013 16:02
Show Gist options
  • Save dillongreen/7514912 to your computer and use it in GitHub Desktop.
Save dillongreen/7514912 to your computer and use it in GitHub Desktop.
setting the fringe in GNU Emacs; lines 23 and 63
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t nil)))
'(buffer-menu-delete-mark ((t (:background "Red" :foreground "white" :weight bold))))
'(buffer-menu-modified-mark ((t (:foreground "red" :weight bold))))
'(buffer-menu-read-only-mark ((t (:foreground "black"))))
'(buffer-menu-save-mark ((t (:background "green" :foreground "white" :weight bold))))
'(buffer-menu-size ((t (:foreground "black"))))
'(buffer-menu-star-buffer ((t (:foreground "black"))))
'(buffer-menu-time ((t (:foreground "black"))))
'(buffer-menu-view-mark ((t (:background "LightBlue" :foreground "white" :weight bold))))
'(compilation-error ((t (:foreground "red" :underline nil :height 100 :width condensed))))
'(cursor ((t (:background "green"))))
'(diff-added ((t (:inherit diff-changed :foreground "green3"))))
'(diff-removed ((t (:inherit diff-changed :foreground "DeepSkyBlue4"))))
'(flyspell-duplicate ((t (:background "Gold3" :foreground "black"))))
'(flyspell-incorrect ((t (:background "red" :foreground "black"))))
'(font-lock-comment-face ((((class color) (min-colors 88) (background light)) (:foreground "DeepSkyBlue4"))))
'(font-lock-constant-face ((((class color) (min-colors 88) (background light)) (:foreground "green3"))))
'(fringe ((((class color) (background light)) (:background "white"))))
'(gnus-button ((t nil)))
'(gnus-cite-1 ((((class color) (background light)) (:foreground "cyan4"))))
'(gnus-cite-10 ((((class color) (background light)) (:foreground "red"))))
'(gnus-cite-11 ((((class color) (background light)) (:background "red" :foreground "white"))))
'(gnus-cite-2 ((((class color) (background light)) (:foreground "dodger blue"))))
'(gnus-cite-3 ((((class color) (background light)) (:foreground "forestgreen"))))
'(gnus-cite-4 ((((class color) (background light)) (:foreground "sienna2"))))
'(gnus-cite-5 ((((class color) (background light)) (:foreground "orange2"))))
'(gnus-cite-6 ((((class color) (background light)) (:foreground "maroon3"))))
'(gnus-cite-7 ((((class color) (background light)) (:foreground "maroon2"))))
'(gnus-cite-8 ((((class color) (background light)) (:foreground "red3"))))
'(gnus-cite-9 ((((class color) (background light)) (:foreground "red2"))))
'(gnus-cite-attribution ((t (:foreground "black"))))
'(gnus-header-content ((t (:foreground "indianred4"))))
'(gnus-header-newsgroups ((t (:foreground "MidnightBlue"))))
'(gnus-signature ((t nil)))
'(gnus-summary-selected ((t (:box (:line-width 1 :color "green" :style released-button)))))
'(highlight-changes ((((min-colors 88) (class color)) (:background "gray95"))))
'(highlight-changes-delete ((((min-colors 88) (class color)) (:background "gray80"))))
'(mode-line ((((class color) (min-colors 88)) (:background "LightGreen" :foreground "black" :box (:line-width 2 :color "green" :style released-button) :height 0.8))))
'(mode-line-buffer-id ((t (:foreground "black" :weight bold))))
'(mode-line-highlight ((((class color) (min-colors 88)) (:box (:line-width 2 :color "black" :style released-button)))))
'(mode-line-inactive ((default (:weight light :height 0.8)) (((class color) (min-colors 88) (background light)) (:background "LightBlue" :foreground "black"))))
'(muse-bad-link ((t (:foreground "blue" :underline nil :weight normal))))
'(muse-comment ((((class color) (background light)) (:foreground "DeepSkyBlue4"))))
'(muse-header-1 ((t (:background "black" :foreground "white" :weight bold :height 1.5))))
'(muse-header-2 ((t (:foreground "black" :box (:line-width 1 :color "black") :weight bold :height 1.3))))
'(muse-header-3 ((t (:foreground "black" :weight bold :height 1.1))))
'(muse-header-4 ((t (:foreground "grey50" :weight bold :height 1.1))))
'(muse-header-5 ((t (:foreground "grey40" :height 0.85))))
'(muse-link ((t (:foreground "blue" :underline nil :weight normal))))
'(planner-delegated-task-face ((t (:foreground "grey40"))))
'(planner-high-priority-task-face ((t (:foreground "red1"))))
'(planner-id-face ((((class color) (background light)) (:foreground "grey60" :height 0.9))))
'(planner-in-progress-task-face ((t (:weight bold :height 1.3))))
'(planner-low-priority-task-face ((t (:foreground "black"))))
'(planner-medium-priority-task-face ((t (:foreground "orange"))))
'(planner-note-headline-face ((t (:foreground "black" :height 1.0))))
'(region ((((class color) (min-colors 88) (background light)) (:background "LightBlue"))))
'(vertical-border ((nil (:foreground "white")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment