Header Anpassungen

This commit is contained in:
Lorenz Hilpert
2023-05-26 11:15:59 +02:00
parent aa048e8d22
commit 2230cf2e7b
19 changed files with 62 additions and 55 deletions

View File

@@ -8,7 +8,7 @@ module.exports = plugin(function ({ addComponents, theme, addBase, addUtilities
'--btn-min-width': theme('spacing.12'),
'--btn-background-color': theme('colors.components.button.DEFAULT'),
'--btn-color': theme('colors.components.button.content'),
'--btn-border-radius': theme('borderRadius.button'),
'--btn-border-radius': theme('borderRadius.DEFAULT'),
'--btn-hover-background-color': theme('colors.components.button.hover.DEFAULT'),
'--btn-hover-color': theme('colors.components.button.hover.content'),
'--btn-active-background-color': theme('colors.components.button.active.DEFAULT'),
@@ -23,6 +23,14 @@ module.exports = plugin(function ({ addComponents, theme, addBase, addUtilities
'--btn-background-color': theme('colors.button.light.DEFAULT'),
'--btn-color': theme('colors.button.light.content'),
},
'.btn-white': {
'--btn-background-color': theme('colors.white'),
'--btn-color': theme('colors.black'),
'--btn-hover-background-color': theme('colors.white'),
'--btn-hover-color': theme('colors.black'),
'--btn-active-background-color': theme('colors.white'),
'--btn-active-color': theme('colors.black'),
},
});
for (const key in theme('colors.accent')) {