colors
variables
colors
$colors: (
prim_bg: #ffffff, // white
prim_text: rgba(0,0,0,0.8), // dark gray
prim_fg: #e8e8e8, // light gray
accent_bg: #0D47A1, // dark blue
highlight_bg: #EF6C00, // amber
);
Description
Map of colors
Used by
- [function]
color
functions
color
@function color() { ... }
Description
Function to get colors from the color map
Parameters
None.
Requires
- [variable]
colors
Used by
- [mixin]
setBg
- [placeholder]
accentColor
mixins
setBg
@mixin setBg() { ... }
Description
Mixin to output primary background color
Parameters
None.
Requires
- [function]
color
placeholders
accentColor
%accentColor { ... }
Description
Placeholder for font color accent
Requires
- [function]
color