UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

21 lines 392 B
export var getColors = function getColors(palette, status) { var colors = { "default": { bg: palette.success }, secondary: { bg: palette.secondary }, success: { bg: palette.success }, warning: { bg: palette.warning }, error: { bg: palette.error } }; if (!status) return colors["default"]; return colors[status]; };