Layout
>
Color
Creator defines a set of 10 colors that styles most of the controls and also some Layout objects
The colors:
Samples
A common use of colors it to set background color or text color.
<div class="bg-primary"> <span class="color-light">How to set color</span> </div>
Form controls like input and button are also styled by colors.
<input type="text" class="textbox-danger" /> <input type="button" class="btn-danger" value="Press me" /> <button class="btn-info">Info Button</button> <button class="btn-primary">Primary Button</button>