-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (41 loc) · 976 Bytes
/
tailwind.config.js
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
41
42
/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme.js'
import colors from 'tailwindcss/colors.js'
export default {
content: [
'./src/**/*.{html,js,svelte,ts}'
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
blue: colors.blue,
white: colors.white,
gray: colors.neutral,
green: colors.emerald,
indigo: colors.indigo,
orange: colors.orange,
pink: colors.pink,
purple: colors.violet,
red: colors.red,
yellow: colors.amber,
},
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
},
},
variants: {},
plugins: [
import('@tailwindcss/forms'),
import('@tailwindcss/typography'),
import('@tailwindcss/aspect-ratio'),
],
}