Add paystro visual components

This commit is contained in:
tobias
2024-06-24 00:05:41 +02:00
parent 0a14bb39de
commit 5eb7b7037b
14 changed files with 583 additions and 44 deletions

19
tailwind.config.js Normal file
View File

@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,ts,tsx}'],
theme: {
extend: {
colors: {
primary: 'rgba(var(--primary))',
secondary: 'rgba(var(--secondary))',
tertiary: 'rgba(var(--tertiary))',
text: 'rgba(var(--text))',
textInverted: 'rgba(var(--textInverted))',
link: 'rgba(var(--link))',
background: 'rgba(var(--background))',
},
},
},
safelist: [],
plugins: [],
}