
Installation:
-------------
Open "System -> Preferences -> Theme" and drop the .tar.gz into the Theme Preferences window.


Low Contrast:
-------------
If you want to use the old low contrast version (light grey text) open a terminal and type:

cd $HOME/.themes/Neutronium-Gtk2/gtk-2.0/

mv gtkrc gtkrc_high_contrast

mv gtkrc_low_contrast gtkrc



Fixes:
------
Here are some fixes for common problems using the Neutronium Gnome theme package. (Or any dark Gnome theme for that matter)

It includes instructions for:

- Firefox

- Gaim

- Open Office 2

- Ubuntu


Firefox:
--------
If web forms and controls appear dark and unreadable you need to edit the css files that Firefox uses. The file location may vary on different linux distributions. Do the following in a terminal:

1. Backup the original file:
sudo mv /usr/lib/firefox/res/forms.css /usr/lib/firefox/res/forms_backup.css

2. Replace it with the provided forms.css
sudo mv "downloaded location"/GTK2/forms.css /usr/lib/firefox/res/forms.css

3. Then you need to edit html.css:
sudo gedit /usr/lib/firefox/res/html.css

Around line 60, change:

body {
  display: block;
  margin: 8px;
}

To:

body {
  background-color: white;
  color: black;
  display: block;
  margin: 8px;
}

Save the file, then restart Firefox, and you should have standard colours.


Gaim 2:
-------
To make Gaim use white fonts in conversations instead of the normal black, do the following in a terminal:

1. gedit $HOME/.gaim/prefs.xml

2. Around line 364 (probably) change the line:

<pref name='fgcolor' type='string' value=''/>

To:

<pref name='fgcolor' type='string' value='#FFFFFF'/>

Save the file. (restart Gaim if it's running)


Open Office 2:
--------------
For dark themes Open Office 2 uses a high contrast icon theme (due to automatic icon settings). If you don't like this, do the following:

1. Open Tools -> Options dialog

2. Go to OpenOffice.org -> View

3. Change the icon theme from automatic/null to a different one.


Ubuntu:
-------
If you are using Ubuntu and buttons look wierd, it's necessary to install the package "gtk2-engines-pixbuf” (sudo aptitude install gtk2-engines-pixbuf). This same recommendation is valid for all the themes based on engine "pixmap".

