aboutsummaryrefslogtreecommitdiffstats
path: root/app/tailwind.config.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/tailwind.config.ts47
1 files changed, 25 insertions, 22 deletions
diff --git a/app/tailwind.config.ts b/app/tailwind.config.ts
index b40ad0e..57f3822 100644
--- a/app/tailwind.config.ts
+++ b/app/tailwind.config.ts
@@ -1,27 +1,30 @@
-import { join } from 'path'
-import type { Config } from 'tailwindcss'
+import { join } from 'path';
+import type { Config } from 'tailwindcss';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
-import { skeleton } from '@skeletonlabs/tw-plugin'
+import { skeleton } from '@skeletonlabs/tw-plugin';
export default {
- darkMode: 'class',
- content: ['./src/**/*.{html,js,svelte,ts}', join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')],
- theme: {
- extend: {},
- },
- plugins: [
- forms,
- typography,
- skeleton({
- themes: {
- preset: [
- {
- name: 'crimson',
- enhancements: true,
- },
- ],
- },
- }),
- ],
+ darkMode: 'class',
+ content: [
+ './src/**/*.{html,js,svelte,ts}',
+ join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
+ ],
+ theme: {
+ extend: {}
+ },
+ plugins: [
+ forms,
+ typography,
+ skeleton({
+ themes: {
+ preset: [
+ {
+ name: 'crimson',
+ enhancements: true
+ }
+ ]
+ }
+ })
+ ]
} satisfies Config;