setup tailwind and vite

This commit is contained in:
Ramspopoo
2022-11-27 22:17:22 +01:00
parent 00c33928f2
commit 2cd94aceac
12 changed files with 934 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}"],
theme: {
extend: {
colors: {
primary: '#003249',
secondary: '#007EA7'
},
fontSize: {
's-h1': '50px',
h1: '56px'
}
},
},
plugins: [],
}