Skip to content

Instantly share code, notes, and snippets.

@GarySwift
Last active July 31, 2020 10:08
Show Gist options
  • Save GarySwift/741668bc5d754fc1249ae6854ca96669 to your computer and use it in GitHub Desktop.
Save GarySwift/741668bc5d754fc1249ae6854ca96669 to your computer and use it in GitHub Desktop.
Zurb Foundation Color Palette Add Colors
<div class="row">
<a class="button large primary" href="#">Primary</a><br>
<a class="button large secondary" href="#">Secondary</a><br>
<a class="button large success" href="#">Success</a><br>
<a class="button large alert" href="#">Alert</a><br>
<a class="button large warning" href="#">Warning</a><br>
<a class="button large alt" href="#">Alt</a><br>
<a class="button large action" href="#">Action</a><br>
</div>
$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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment