This gist shows how you can add your own custom colors to the Zurb Foundation color palette.
They new colors can then be used to create custom buttons. The color sass variable is also avaliable using the get-color()
function.
$lime: #A19F36; | |
$teal: #1D5158; | |
$foundation-palette: ( | |
primary: #1779ba, | |
secondary: #767676, | |
success: #3adb76, | |
warning: #ffae00, | |
alert: #cc4b37, | |
alt: $lime, | |
action: $teal, | |
); | |
$alt-color: get-color(alt); | |
$action-color: get-color(action); |
This gist shows how you can add your own custom colors to the Zurb Foundation color palette.
They new colors can then be used to create custom buttons. The color sass variable is also avaliable using the get-color()
function.