2023-04-20 19:22:44 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [],
|
|
|
|
theme: {
|
2023-04-23 10:15:25 +02:00
|
|
|
extend: {
|
|
|
|
colors: {
|
2023-04-25 15:51:20 +02:00
|
|
|
primary: '#3794B5',
|
2023-04-23 10:15:25 +02:00
|
|
|
secondary: '#4bacef',
|
2023-04-25 15:51:20 +02:00
|
|
|
},
|
|
|
|
gridTemplateColumns: {
|
|
|
|
'desktoplayout': '14rem 1fr'
|
|
|
|
},
|
|
|
|
gridTemplateRows: {
|
|
|
|
'desktoplayout': '3rem 1fr'
|
2023-04-23 10:15:25 +02:00
|
|
|
}
|
|
|
|
},
|
2023-04-20 19:22:44 +02:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|