Added new Hamann-Project

This commit is contained in:
schnulller
2022-05-11 12:27:19 +02:00
parent c5f30d463c
commit 209c40258d
32 changed files with 2858 additions and 2 deletions

26
HaWeb/tailwind.config.js Normal file
View File

@@ -0,0 +1,26 @@
module.exports = {
content: [
"./wwwroot/**/*.{html,js}",
"./Views/**/*.{cshtml,html,js}",
],
theme: {
fontFamily: {
sans: ['Biolinum', 'sans-serif'],
serif: ['Libertine', 'serif'],
},
screens: {
'sm': '786px',
'md': '1024px',
'lg': '1312px',
'xl': '1440px',
'2xl': '1680px',
},
extend: {
colors: {
'hamannHighlight': '#d80000',
'hamannLightHighlight': '#cc7878'
}
},
},
plugins: [],
}