-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,js}",
"./**/*.{html,js}",
"index.html"
],
theme: {
extend: {},
fontFamily: {
display: ["'Public Sans', sans-serif"],
},
container: {
center: true,
padding: '0rem',
screens: {
sm: '600px',
md: '728px',
lg: '920px',
xl: '980px',
'2xl': '1320px',
},
},
colors: {
current: 'currentColor',
white: '#FFFFFF',
black: '#000000',
'primary-50': '#E9F8F3',
'primary-500':'#20B486',
'primary-900':'#06241B',
'secondary-50': '#FFFAF5',
'gray-700': '#363A3D',
'gray-600': '#52565C',
'gray-500': '#6D737A',
'gray-black': '#1B1D1F',
'gray-50': '#E7E9EB',
'gray-white': '#FFFFFF',
'gray-custom': '#E7E9EB',
'pink-200': '#FFEEF0',
'blue-200': '#F0F7FF'
},
},
plugins: [],
}