Usage
brand($name, $index)
Parameters
$name
(Required) (String) The brand to get a color for
Default: None
$index
(Optional) (Integer or String) Which color of the brand to get
Default: 1
Parameter Notes
$index can either be the numbered index of the color, or a named one such as “primary”, “secondary”, “tertiary”, “quaternary”, etc.
Examples
.example {color: brand(facebook);}
.example {color: brand(flickr, secondary);}
.example {color: brand(flickr, 2);}
Source File
This function was not found in /assets/scss/partials/_mixins.scss. Please report this error.
Override
To override or disable this, redefine the mixin/function later on, or use different class names to prevent this from targeting your element.
@mixin brand($name, $index){ //Write your own code here, leave it blank, or return false. }