init test branch

This commit is contained in:
2023-07-02 21:02:20 +02:00
commit 2ce394553e
53 changed files with 22704 additions and 0 deletions

26
tailwind.config.js Normal file
View File

@@ -0,0 +1,26 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{vue,js}",
],
darkMode: true,
theme: {
extend: {
fontFamily: {
'arial': ['Arial', 'sans-serif'],
'roboto': ['Roboto', 'sans-serif'],
'thasadith': ['Thasadith', 'sans-serif']
},
fontSize: {
'logo-size': '2.5rem',
},
screens: {
'header-content': '900px'
},
colors: {
'kamilcraft-green': 'rgb(var(--color-kamilcraft-green) / <alpha-value>)'
}
},
},
plugins: [],
}