magicwallet/tailwind.config.js
ekzyis abad39a2bc Let it be hermes
* rename to hermes
* use echo+htmx+templ stack
* use code from delphi.market as scaffolding
2024-10-26 03:57:06 +02:00

30 lines
717 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.templ"],
theme: {
container: {
center: true,
padding: '1rem'
},
extend: {
colors: {
'background': '191d21',
'muted': '#6c757d',
},
},
},
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
'@screen lg': {
maxWidth: '768px',
},
'@screen xl': {
maxWidth: '768px',
},
}
})
}
],
}