-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (46 loc) · 924 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors:{
'twilight': {
'100': '#a193d9',
'200': '#7a6aa9',
'300': '#56437c',
'400': '#331f51',
'500': '#140029',
},
backgroundColor : '#f4f4fc',
},
height: {
'90p': '90%',
'10p': '10%',
'5p' : '5%',
'80p' : '80%',
'95p' : '95%',
'85p' : '85%',
'30p' : '30%',
'70p' : '70%',
'50p' : '50%',
'40p' : '40%',
},
width: {
'90p': '90%',
'10p': '10%',
'5p' : '5%',
'80p' : '80%',
'95p' : '95%',
'85p' : '85%',
'30p' : '30%',
'70p' : '70%',
'50p' : '50%',
'40p' : '40%',
},
},
},
plugins: [],
}