Merge multiple Sass maps
问题 I have three Sass maps that I want to merge into one map. With the map-merge function I can only merge two maps together. How can I merge more than two maps? A shortened example of my situation: $color-name: ( blue: ( default: blue, dark: navy, light: sky ) ); $color-event: ( danger: ( default: set($color-name, red), dark: set($color-name, red, dark), light: set($color-name, red, light), ) ); $color-category: ( heading: ( default: set($color-name, grey), dark: set($color-name, grey, dark),