-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
43 lines (41 loc) · 909 Bytes
/
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
41
42
43
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
//* TAILWIND CONFIGURATION
import { fontSize, spacing, colors } from './nci/app/factories/clamp/theme-config'
//*cant use @ or ~ in this file or its dependencies. See: https://github.com/tailwindlabs/discuss/issues/119
export default {
purge: {
enabled: false
},
jit: false,
darkMode: false, // or 'media' or 'class'
important: true,
theme: {
extend: {
keyframes: {
'fade-in': {
'0%': {
opacity: '0'
},
'100%': {
opacity: '1'
},
}
},
colors: colors,
fontSize: fontSize,
spacing: spacing,
lineHeight: {
'full': "100%"
},
animation: {
'fade-in': 'fade-in ease 6s'
},
},
},
variants: {
extend: {
// ...
borderStyle: ['hover'],
},
}
}