Open gsouf opened 9 years ago
Implement standard colors for text, panel, buttons, etc..
We would take example on bootstrap colors:
Some first though examples:
Per element construction
$builder->submit("Send", "send", "success"); $builder->submit("Delete", "delete", "danger");
Universal but needs more implementation in render engine
$builder->submit("Send", "send")->isSuccess(); $builder->submit("Delete", "delete")->isDanger();
Also allow raw colors
$builder->submit("Delete", "delete", "#FFA256");
Implement standard colors for text, panel, buttons, etc..
We would take example on bootstrap colors:
Some first though examples:
Per element construction
Universal but needs more implementation in render engine