Initial commit

This commit is contained in:
2022-11-06 18:19:13 +01:00
commit 7512f2e5ee
69 changed files with 11111 additions and 0 deletions

23
web/tailwind.config.js Normal file
View File

@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
extend: {
colors: {
'co-blue': '#243887',
'co-lightblue': '#907eff',
'co-red': '#ff1300',
'co-green': '#6cc11f',
'co-yellow': '#ffdd00',
'co-orange': 'ff5300',
},
borderRadius: {
'co': '40%',
}
},
},
plugins: [
require('@tailwindcss/forms'),
],
}