forked from Catch-You/CatchYou-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (34 loc) · 898 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
/** @type {import('tailwindcss').Config} */
const px0_100 = { ...Array.from(Array(101)).map((_, i) => `${i}px`) };
const px0_1000 = { ...Array.from(Array(1001)).map((_, i) => `${i}px`) };
module.exports = {
content: [
"./index.html", "./src/**/*.{js,ts,jsx,tsx}"
],
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
minWidth: px0_1000,
minHeight: px0_1000,
maxWidth: px0_1000,
maxHeight: px0_1000,
width: px0_1000,
height: px0_1000,
borderRadius: px0_1000,
fontSize: px0_100,
lineHeight: px0_100,
padding: px0_1000,
margin: px0_1000,
colors: {
mainColor: '#112D4E',
subColor: '#3F72AF',
superSubColor: '#DBE2EF',
errorColor: '#F4800B',
errorSubColor: '#FCF0E5',
blackColor: '#1D1D1D',
grayColor: '#717073'
}
},
},
plugins: [],
}