import { resolveColor } from '@baserow/modules/core/utils/colors' import { ThemeConfigBlockType } from '@baserow/modules/builder/themeConfigBlockTypes' import form from '@baserow/modules/core/mixins/form' export default { inject: ['workspace', 'builder', 'currentPage', 'elementPage', 'mode'], mixins: [form], computed: { themeConfigBlocks() { return this.$registry.getOrderedList('themeConfigBlock') }, colorVariables() { return ThemeConfigBlockType.getAllColorVariables( this.themeConfigBlocks, this.builder.theme ) }, }, methods: { resolveColor, }, }