This commit is contained in:
relaxed 2024-08-25 12:07:03 +05:00
commit b8e463b000
31 changed files with 2230 additions and 0 deletions

12
tailwind.config.js Normal file
View file

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,svelte}",
],
darkMode: 'selector',
theme: {
extend: {},
},
plugins: [],
}