A 54 shade color palette for branded designs. It uses hsl values to create 9 lighter or darker shades of your
preferred
primary
color, secondary
color, amber
, red
, green
and grey
/neutral
- Update
$primary
and$secondary
to your preferred hue values. - Import
_colors.scss
to your basescss
file:@import "colors"
. - In your
scss
file you can usecolor: neutral($foreground)
orbackground-color: spin($primary, $background)
etc.
Choose your shade by calling neutral($shade)
You can pass any of the following variables for neutral color shades
foreground
, darkest
, darker
, dark
, light
, lighter
, lightest
, background
.
background-color: neutral($light);
For base color, use neutral()
without an argument
Choose your color by spinning the hue wheel and selecting the shade of that color: spin($baseColor, $shade)
You can pass any of the following variables as baseColor
:
primary
, secondary
, amber
, green
, red
You can pass any of the following variables for various color shade
:
foreground
, darkest
, darker
, dark
, light
, lighter
, lightest
, background
.
color: spin($red, $darker);
For base color use spin($red)
without the second argument.