Files
Modul_152/Webauftritt/eportfolio/tailwind.config.cjs
2022-12-19 21:45:41 +01:00

23 lines
531 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}",
"./partials/*.hbs"],
theme: {
extend: {
colors: {
textcolor: '#CCDBDC',
navbackground: '#003249',
primary: '#9AD1D4',
banner: '#007EA7'
},
fontSize: {
's-h1': '50px',
h1: '56px',
's-h2': '60px',
h2: '60px'
}
},
},
plugins: [],
}