Fix borders
[worg.git] / org-color-themes.org
blob92067203643c2b6ef3c003e728e08d7526581747
1 #+OPTIONS:    H:3 num:nil toc:t \n:nil ::t |:t ^:t -:t f:t *:t tex:t d:(HIDE) tags:not-in-toc
2 #+STARTUP:    align fold nodlcheck hidestars oddeven lognotestate
3 #+SEQ_TODO:   TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@)
4 #+TAGS:       Write(w) Update(u) Fix(f) Check(c)
5 #+TITLE:      Org Color Themes
6 #+AUTHOR:     Worg people
7 #+EMAIL:      mdl AT imapmail DOT org
8 #+LANGUAGE:   en
9 #+PRIORITIES: A C B
10 #+CATEGORY:   worg
12 # This file is the default header for new Org files in Worg.  Feel free
13 # to tailor it to your needs.
15 #+MACRO: screenshot #+HTML: <br style="clear:both;"/><div class="figure"><p><img style="float:center;margin:20px 20px 20px 20px;" width="500px" src="$2"/></p><p><a href="https://code.orgmode.org/bzg/worg/raw/master/code/elisp/$1">$1</a></p></div>
17 [[file:index.org][{Back to Worg's index}]]
19 # Contributing Screenshots to this page.
21 # To make an addition to this page
22 # 1) place your screenshot in the /images/screenshots/ directory in the
23 #    base of the worg repository -- or not if you'd rather host the
24 #    image externally
25 # 2) place your color-theme-*.el file in the code/elisp/ directory in
26 #    the base of the worg repository
27 # 3) add a macro call like those shown below passing the name of your
28 #    color theme and the link to your screen-shot respectively to the
29 #    =screenshot= macro
31 * Org Colour Themes
33 #+index: Themes
35 A popular way of customizing Emacs colours is to use the color-theme
36 package (see [[http://www.emacswiki.org/emacs/ColorTheme][color-theme emacswiki page]].)
38 Here is a list of color themes that are aware of Org: You can see
39 screen shots of these themes [[file:./color-themes-screenshot.org][here]]. Once you have installed a theme it
40 is easy to tweak its appearance by editing the theme's lisp file.
42 Some of these themes are available in Worg in the color-themes
43 directory, whilst others are linked either to the author's site, or to
44 Github.
46 There is a page with screenshots of each of the themes [[file:color-themes-screenshot.org][here]] .
48 ** [[http://www.emacswiki.org/emacs/zenburn.el][color-theme-zenburn.el]] (maintained by Daniel Brockman)
49 ** [[http://jaderholm.com/color-themes/color-theme-colorful-obsolescence.el][color-theme-colorful-obsolescence.el]] (Scott Jaderholm)
51 Links to Scott's themes all point directly to his site.
52 ** [[http://jaderholm.com/color-themes/color-theme-wombat.el][color-theme-wombat.el]] (Scott Jaderholm)
54 ** [[http://jaderholm.com/color-themes/color-theme-active.el][color-theme-active.el]] (Scott Jaderholm)
56 ** [[https://github.com/fniessen/color-theme-leuven][color-theme-leuven.el]] (Fabrice Niessen)
58 ** [[file:code/elisp/color-theme-zenburn.el][color-theme-zenburn.el]] (Daniel Brockman Adrian C., Bastien Guerry)
60 ** [[file:code/elisp/color-theme-tangotango.el][color-theme-tangotango.el]] (Julien Barnier)
61 [[http://blog.nozav.org/post/2010/07/12/Updated-tangotango-emacs-color-theme][Link]] to Julien's blog post about tangotango. [[http://github.com/juba/color-theme-tangotango][Link]] to the Github repository.
63 ** [[file:code/elisp/color-theme-folio.el][color-theme-folio.el]] color-theme-folio.el (David O'Toole)
65 ** [[file:code/elisp/color-theme-manoj.el][color-theme-manoj.el]] (maintained by [[http://www.golden-gryphon.com/blog/manoj/blog/2008/05/26/Theming_Emacs/][Memnon]])
67 ** [[file:code/elisp/color-theme-zenash.el][color-theme-zenash.el]] (maintained by Yavuz Arkun)
68 A modified version of zenburn. [[http://github.com/yarkun/zenash][Link]] to the Github repository.
70 ** [[http://github.com/suvayu/.emacs.d/blob/master/lisp/color-theme-dark-emacs.el][color-theme-dark-emacs.el]] (maintained by Suvayu Ali)
71 Based on theme made by the emacswiki user, ZWZ. The original theme can
72 be found [[http://www.emacswiki.org/emacs/zwz][here]]. Suvayu has also made some org-mode font modifications
73 outside of the colour theme, which can be obtained [[http://github.com/suvayu/.emacs.d/blob/master/lisp/org-mode-settings.el][here]]. Suvayu's
74 [[http://github.com/suvayu/.emacs.d/blob/master/init.el][init.el]] gives more information on how to use his customizations.
76 /NB:/ This theme is not maintained anymore, and won't work with the
77 trunk version of Emacs 24.1. Emacs 24.1 removes support for the
78 deprecated 3rd argument form for =face-spec-set=. This breaks the
79 =color-theme= package in general; so instead of waiting for it to be
80 fixed, ~dark-emacs~ is now available as an Emacs 24 custom theme. The
81 latest version can be found [[http://github.com/suvayu/.emacs.d/blob/master/themes/dark-emacs-theme.el][here]].
83 ** [[https://github.com/n3mo/cyberpunk-theme.el][cyberpunk-theme.el]] (Nick Van Horn)
84 Cyberpunk color theme for the emacs 24+ built-in color theme support
85 known loosely as deftheme. The theme is mostly a direct port of the
86 overtone/emacs-live theme of the same name (designed originally for
87 the color-theme package). Many mode-specific customizations,
88 particularly with respect to org-mode, have also been added.
90 ** Installing Org Colour Themes.
91 First make sure that you have the Emacs color-theme package
92 installed. Copy the lisp files for the themes into a directory in your
93 Emacs load path.
95 If you want to be able to easily cycle between different
96 colour schemes, you need something like the following in your .emacs:
98 #+BEGIN_SRC emacs-lisp
99 (require 'color-theme)
100 (setq color-theme-is-global t)
101 (color-theme-initialize)
103 (load "color-theme-colorful-obsolescence")
104 (load "color-theme-zenburn")
105 (load "color-theme-tangotango")
106 (load "color-theme-railscast")
107 (load "color-theme-leuven")
108 (load "color-theme-folio")
109 (load "color-theme-zenash")
110 (load "color-theme-manoj")
112 (setq my-color-themes (list
113   'color-theme-tangotango
114   'color-theme-colorful-obsolescence 'color-theme-zenburn
115   'color-theme-leuven 'color-theme-folio 
116   'color-theme-manoj 'color-theme-zenash
117   'color-theme-railscast
120 (defun my-theme-set-default () ; Set the first row
121       (interactive)
122       (setq theme-current my-color-themes)
123       (funcall (car theme-current)))
124      
125     (defun my-describe-theme () ; Show the current theme
126       (interactive)
127       (message "%s" (car theme-current)))
128      
129    ; Set the next theme (fixed by Chris Webber - tanks)
130     (defun my-theme-cycle ()            
131       (interactive)
132       (setq theme-current (cdr theme-current))
133       (if (null theme-current)
134       (setq theme-current my-color-themes))
135       (funcall (car theme-current))
136       (message "%S" (car theme-current)))
137     
138     (setq theme-current my-color-themes)
139     (setq color-theme-is-global nil) ; Initialization
140     (my-theme-set-default)
141     (global-set-key [f4] 'my-theme-cycle)
142   
143 #+END_SRC
145 Now you can cycle through the installed themes using the F4 key.