tags:

views:

135

answers:

2

Hello,

GNU Emacs 23.1.1
Fedora 13

I can select the colour theme by

M-x color-theme-select

I scroll down and select the

clarity and beauty

This works ok. However, in my configuration I am not sure how to select this. This is what I have, but doesn't work.

(require 'color-theme)
(color-theme-ClarityandBeauty)

many thanks for any suggestions,

+3  A: 

M-x color-theme-cl<Tab> shows me that the name is color-theme-clarity, which means you should have this in your .emacs:

(color-theme-clarity)
jamessan
Hello, I needed to add this line before color-theme-clarity. (color-theme-initialize). Thanks. Problem solved.
robUK
+5  A: 

This is the configuration I have (from the color-theme documentation):

(add-to-list 'load-path "C:/opt/elisp/color-theme") ;; The path to color-theme.el
(require 'color-theme)
(eval-after-load "color-theme"
  '(progn
     (color-theme-initialize)
     (color-theme-subtle-hacker)))  ;; This is the theme you want to use.
kjfletch