Skip to main content
Topic: Changing colours in the font colour palette  (Read 1670 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Changing colours in the font colour palette

As the subject says, can someone point me in the right way in the files to change the colours? Some of them doesn't work well with my theme. :)

Best,

Auctor Lucan

Re: Changing colours in the font colour palette

Reply #1

You can create a file called custom.css in the appropriate corresponding theme css folder.  Any rules in that file will override the main css rules.  You can use this technique to tweak one rule, or all.  Lots of flexibility.   8)

Re: Changing colours in the font colour palette

Reply #2

If you are referring to the font color pallet that is available in the editor then you will have to edit the GenericControls.template.php (if the custom theme does not have that file, simply copy the one from the default theme to the custom theme)

In that file you will find
Code: [Select]
					colors: "black,red,yellow,pink,green,orange,purple,blue,beige,brown,teal,navy,maroon,limegreen,white",

Change those to what you want, you can also use hex color codes ie #cccccc in place of the standard html color names.

 

Re: Changing colours in the font colour palette

Reply #3

Awesome, thanks!