Live data from Hacker News

Afterglow: Dark Theme for Sublime

yabatadesign.github.io

41–50 of 96 posts

Re: Afterglow: Dark Theme for Sublime

#45

Any scientific reason behind using a dark theme?

I find using a dark theme when coding in the dark is better because the bright white background won't blast your face.

light themes are better if you have a glossy display and there's some sunlight since you won't see so many reflections

Re: Afterglow: Dark Theme for Sublime

#46
post #34

This is gorgeous. I wish there was one for Emacs :(

The scheme I use looks similar:

  (custom-set-variables
   '(custom-enabled-themes (quote (tango-dark))))
  
  (custom-set-faces
   '(default ((t (:family "Consolas" :foundry "outline" :slant normal :weight normal :height 90 :width normal))))
   '(rainbow-delimiters-depth-1-face ((t (:foreground "#A0FA67"))))
   '(rainbow-delimiters-depth-2-face ((t (:foreground "white"))))
   '(rainbow-delimiters-depth-3-face ((t (:foreground "yellow"))))
   '(rainbow-delimiters-depth-4-face ((t (:foreground "dodger blue"))))
   '(rainbow-delimiters-depth-5-face ((t (:foreground "hot pink"))))
   '(rainbow-delimiters-depth-6-face ((t (:foreground "cyan"))))
   '(rainbow-delimiters-depth-7-face ((t (:foreground "lawn green"))))
   '(rainbow-delimiters-depth-8-face ((t (:foreground "firebrick1"))))
   '(rainbow-delimiters-depth-9-face ((t (:foreground "SeaGreen1")))))
  
  (require 'rainbow-delimiters)
  (global-rainbow-delimiters-mode)
Post reply on HN