02/09/2015
graphic charter
The colors on template can be dependents from a web site.
You can select a list of colors in css and html to make a correspondence between colors defined in the website and colors defined in the template.
list of colors :
- data.color.special
- data.color.title
- data.color.text
- data.color.menu.text
- data.color.menu.background
- data.color.link
- data.color.background
- data.color.foreground
- data.color.border
Sample
config file
data.color.title=0000ff
data.color.text=00ff00
Css before deployement
h1 {
color: #0000ff;
}
Graphic charter definition
css after deployement
h1 {
color: #eb0909;
}