-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.16 KB
/
tailwind.config.js
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
46
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{js,ts,jsx,tsx}'
],
darkMode: 'class',
theme: {
extend: {
colors: {
white: '#FFFFFF',
black: '#000000',
gray200: '#F9F9F9',
gray300: '#C4C4C4',
gray400: '#9B9B9B',
gray500: '#777676',
gray600: '#535252',
gray700: '#2F2E2E',
yellow200: '#FFD271',
yellow300: '#FEB20E',
yellow400: '#DF9800',
red200: '#FF634B',
red300: '#F43518',
red400: '#B71800',
green200: '#E6FEED',
green300: '#069154',
green400: '#01703F',
blue200: '#6979BE',
blue300: '#1F307C',
blue400: '#0B1A5C',
cream200: '#FFF2EB',
cream300: '#FFEADF',
cream400: '#F5D5C4',
pink200: '#FEE9E6',
pink300: '#E28281',
pink400: '#C86564'
},
fontFamily: {
archivo: ['Archivo', 'sans-serif'],
varela: ['Varela-Round', 'sans-serif'],
helvatica: ['Helvatica', 'sans-serif']
}
}
},
variants: {},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')]
}