Initial Code Commit

This commit is contained in:
2025-11-03 19:51:59 +00:00
parent cfd3ccbdbb
commit b84eb2db3d
45 changed files with 1078 additions and 138 deletions

32
tailwind.config.ts Normal file
View File

@@ -0,0 +1,32 @@
import { join } from 'path'
import type { Config } from 'tailwindcss'
import { skeleton } from '@skeletonlabs/tw-plugin'
import { myCustomTheme } from './CustomTheme';
import { addDynamicIconSelectors } from '@iconify/tailwind';
import forms from '@tailwindcss/forms';
export default {
darkMode: 'selector',
content: ['./src/**/*.{html,js,svelte,ts}', join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')],
theme: {
extend: {},
},
plugins: [
forms,
skeleton({
themes: {
custom: [
myCustomTheme
]
},
}),
addDynamicIconSelectors({
prefix: 'icon',
scale: 2,
iconSets: {},
customise: (content, name, prefix) => content
})
],
} satisfies Config;