-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
35 lines (34 loc) · 1.06 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
import colors from './tailwind/colors'
import defaultConfig from 'tailwindcss/stubs/config.full'
import animation from './tailwind/animation'
import variables from './tailwind/variables'
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
corePlugins: {
preflight: false,
},
theme: {
variables,
fontFamily: {
kzen: ['Roboto Slab', defaultConfig.theme.fontFamily.sans],
allura: ['Allura', defaultConfig.theme.fontFamily.sans],
inter: ['Inter', defaultConfig.theme.fontFamily.sans],
atkinson: ['Atkinson Regular', defaultConfig.theme.fontFamily.sans],
},
extend: {
colors,
animation: animation.animation,
keyframes: animation.keyframes,
screens: {
xs: '429px',
'2lg': '1200px',
'3xl': '1920px',
},
},
},
plugins: [
require('@mertasan/tailwindcss-variables'),
require('tailwindcss-animate'),
require('tailwind-scrollbar'),
],
}