-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (38 loc) · 1 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//import { join } from 'path';
import type { Config } from 'tailwindcss';
import { skeleton, contentPath } from '@skeletonlabs/skeleton/plugin';
import * as themes from '@skeletonlabs/skeleton/themes'
import weddingtheme from './wedding_theme';
export default {
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
contentPath(import.meta.url, 'svelte')
],
theme: {
extend: {
backgroundImage: {
'bnm-bg': "url('/src/lib/assets/bnm_bg.jpg')",
'bnm-bg-2': "url('/src/lib/assets/bnm_bg_2.jpg')",
'bnm-mobile': "url('/src/lib/assets/bnm_bg_mobile.jpg')",
'bnm-mobile-2': "url('/src/lib/assets/bnm_bg_mobile_2.jpg')"
},
fontFamily: {
nfRegular: ['NationalForestRegular'],
nfPrintRegular: ['NationalForestPrintRegular'],
nfPrintBold: ['NationalForestExtraBold'],
nfExtraBold: ['NationalForestExtraBold']
},
},
transformOrigin: {
'top-left-1/3-3/4': '33% 75%'
}
},
plugins: [
skeleton({
themes: [
themes.rose, weddingtheme
]
})
]
} satisfies Config;