-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.09 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
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: {
apricot: '#fdd5b1',
bitOfSugar: 'rgb(244,242,236)',
blackBean: '#282222',
bloodorange: '#fe4b03',
coconut: '#fefefe',
grapefruit: '#fd5956',
herring: 'rgb(108,120,119)',
jasmineRice: '#f1eeec',
licorice: '#1A1110',
oyster: 'rgb(187, 179, 178)',
peachPuff: 'rgb(255, 218, 185)',
silverChalice: '#aaaaaa',
smashedPumpkin: '#ff6d3a',
stainless: '#d4d4d8',
tangerine: '#f28500',
tilapiaScale: 'rgb(164,180,182)',
wildWatermelon: '#FD5B78',
},
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};
export default config;