-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.24 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
41
42
43
44
45
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
gridTemplateColumns: {
'13': 'repeat(13, minmax(0, 1fr))',
},
colors: {
blue: {
text: '#173C9F',
background: '#ECF0FB',
formInput: '#38477B',
inputOutlineActive: '#0D2B9D',
activeCoupon: '#0D2B9D1F',
inputOutlineDefault: '#5D73BF',
activeCouponBorder: '#5A6EBC',
},
yellow: {
button: '#FBBC05',
},
gray: {
background: '#64729d'
},
green: {
background: '#22c55e'
}
},
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
}
export default config