-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
47 lines (46 loc) · 1.29 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
47
const px0_100 = { ...Array.from(Array(101)).map((_, i) => `${i}px`) };
const px0_1000 = { ...Array.from(Array(1001)).map((_, i) => `${i}px`) };
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,jsx}"],
theme: {
extend: {
minWidth: px0_1000,
minHeight: px0_1000,
maxWidth: px0_1000,
maxHeight: px0_1000,
inset: px0_1000,
gap: px0_100,
width: px0_1000,
height: px0_1000,
borderRadius: px0_1000,
fontSize: px0_100,
lineHeight: px0_100,
padding: px0_1000,
margin: px0_1000,
boxShadow: {
custom:
"rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;",
},
borderWidth: px0_1000,
colors: {
"supermain-color": "#6B58D3",
"main-color": "#8785F6",
"sub-color": "#C9C8FF",
"err-color": "#D10000",
"main-bg": "#F5F5F5",
"black-900": "#333333",
"gray-900": "#4D4D4D",
"gray-semi": "#6A6A6A",
"gray-800": "#E1E1E1",
"gray-700": "#BFBFBF",
"gray-border": "#E9E9E9",
"gray-input": "#F8F8FA",
"gray-placeholder": "#CCCCCC",
"gray-menu": "#EBEBEB",
"white-100": "#E1E9E5",
},
},
},
plugins: [],
};