„assets/tailwind.config.js“ ändern

This commit is contained in:
inhji 2023-03-15 16:18:03 +01:00
parent 24a903a8ef
commit e825de4310

View file

@ -18,7 +18,12 @@ module.exports = {
code: colors.emerald,
gray: colors.zinc,
theme: {
primary: 'rgb(var(--color-primary) / <alpha-value>)'
primary: 'rgb(var(--color-primary) / <alpha-value>)',
secondary: 'rgb(var(--color-secondary) / <alpha-value>)',
heading: 'rgb(var(--color-text-heading) / <alpha-value>)',
base: 'rgb(var(--color-text-base) / <alpha-value>)',
muted: 'rgb(var(--color-text-muted) / <alpha-value>)',
background: 'rgb(var(--color-background) / <alpha-value>)'
}
}
},