To change the color theme permanently, create a .emacs file
in your home directory, note the name of the file is .emacs (with the dot).
This file, .emacs, is your emacs initialization file, that allows you
to customize emacs. In your .emacs file put the following
Lisp code:
;; Color theme
(require 'color-theme)
(setq color-theme-is-global t)
(color-theme-gnome2)
Above, where it says "color-theme-gnome2" replace that with
the name of the theme you selected.