1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-21 23:37:55 +00:00
bramw_baserow/web-frontend/modules/builder/utils/theme.js
2023-10-30 14:03:35 +00:00

8 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 },
]
}