UNPKG

@fluent-windows/core

Version:

React components that inspired by Microsoft's Fluent Design System.

15 lines (13 loc) 301 B
import { standard, primary, error, white, black } from '../colors'; import { deepMerge } from '../utils'; function createColor(colors) { const defaultColors = { standard, primary, error, white, black }; return deepMerge(defaultColors, colors); } export default createColor;