forked from kayp-oss/fin-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (35 loc) · 906 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
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
import { fontFamily } from 'tailwindcss/defaultTheme'
const config: Config = {
content: [
'src/app/**/*.{ts,tsx}',
'src/components/**/*.{ts,tsx}',
'src/layouts/**/*.{ts,tsx}',
'src/widgets/**/*.{ts,tsx}',
],
theme: {
colors: {
inherit: colors.inherit,
current: colors.current,
transparent: colors.transparent,
black: colors.black,
white: colors.white,
slate: colors.slate,
},
extend: {
fontFamily: {
sans: ['var(--font-geist-sans)', ...fontFamily.sans],
mono: ['var(--font-geist-mono)', ...fontFamily.mono],
},
keyframes: {
shimmer: {
from: { transform: 'translateX(-100%)' },
to: { transform: 'translateX(100%)' },
},
},
},
},
plugins: [],
}
export default config