UNPKG

@redocly/theme

Version:

Shared UI components lib

5 lines (4 loc) 181 B
export const getCssColorVariable = ( color: string | undefined, defaultValue = 'currentColor', ): string => (color?.startsWith('--') ? `var(${color})` : color || defaultValue);