WIP: Add styles

This commit is contained in:
Björn Fromme
2023-09-14 17:58:19 +02:00
parent f8c9ff82a5
commit 1127f08abc
26 changed files with 9313 additions and 18 deletions
+26
View File
@@ -0,0 +1,26 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./templates/**/*.twig',
],
theme: {
extend: {
fontFamily: {
sans: ['Lato', 'sans-serif'],
},
fontWeight: {
semibold: '700',
bold: '900',
},
colors: {
primary: '#3d8ccb',
secondary: '#f9c700',
}
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}