Files
trouvetonprofile/tailwind.config.js
Styve Lioumba 4fb600b0cb configuration pocketbase terminé (#5)
# Conflicts:
#	.gitignore
2025-09-27 20:11:34 +02:00

26 lines
588 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class', // or 'media' or 'class'
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {
fontFamily: {
ubuntu: ["ubuntu", "sans-serif"],
},
backgroundColor: ['dark'],
textColor: ['dark'],
boxShadow: {
oauthBtn:
'inset -2px -2px 8px 0px rgba(0, 0, 0, 0.25), 2px 2px 8px 0px rgba(0, 0, 0, 0.25)',
},
backgroundImage: {
auth: 'url("./assets/images/bg.avif")',
},
},
},
plugins: [],
}