-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (35 loc) · 1002 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (35 loc) · 1002 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
zentry: ['zentry','sant-serif'],
general: ['general','sanf-serif'],
'circular-web': ['circular-web','sanf-serif'],
'robert-medium': ['robert-medium','sanf-serif'],
'robert-regular': ['robert-regular','sanf-serif'],
},
colors: {
blue: {
50: '#DFDFF0',
75: '#DFDFF2',
100: '#F0F2FA',
200: '#010101',
300: '#4FB7DD',
},
violet: {
300: '#5724FF',
},
yellow:{
100:'#8E983F',
300: '#EDFF66',
}
}
},
},
plugins: [],
}