mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-12 16:18:48 +00:00
7 lines
283 B
JavaScript
7 lines
283 B
JavaScript
export const themeToColorVariables = (theme) => {
|
|
return [
|
|
{ name: 'Primary', value: 'primary', color: theme.primary_color },
|
|
{ name: 'Secondary', value: 'secondary', color: theme.secondary_color },
|
|
{ name: 'Border', value: 'border', color: theme.border_color },
|
|
]
|
|
}
|