// colors 
$colors: (
    "blue": blue,
    "red": red,
    "pink": pink,
    "yellow": yellow,
    "orange": orange,
    "green": green,
    "white": white,
    "black": black,    
);

// font-weights
$weights: (
    "light": 300,
    "normal": 400,
    "medium": 500,
    "semibold": 600,
    "bold": 700,
    "bolder": 800,  
)