Changing the Candidate Space color theme

Candidate Space is delivered with a blue color theme, but it can be changed. The icons for each color theme are stored in the images folder in a folder named for the color. To see the colors of each color theme, click the images in the folder for the color.

  1. Select js/userTheme.js.
  2. Edit the colorScheme line, replacing none with one of the possible color schemes.

    Always use a plain text editor such as Notepad or Notepad++ to edit lines in a file. Do not use Wordpad or Microsoft Word, as they may introduce invalid characters.

    var UserTheme = {
    
        fontFamily : 'none', //example, 'Times New Roman'
    
    /*  Possible color schemes are: ('none' is no override)
    	"none',
    	'blue',
    	'brown',
    	'green',
    	'lightbrown',
    	'orange',
    	'purple',
    	'red',
    	'sagegreen'
    */
        colorScheme : 'none'
    
    }

    For example, to use the sagegreen color theme, the line should read:

    colorScheme : 'sagegreen'

    The color theme names are case-sensitive.

  3. Click Save.

This is the color palette: