-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
const px0_10 = { ...Array.from(Array(11)).map((_, i) => `${i}px`) };
const px0_100 = { ...Array.from(Array(101)).map((_, i) => `${i}px`) };
const px0_300 = { ...Array.from(Array(301)).map((_, i) => `${i}px`) };
const px0_500 = { ...Array.from(Array(501)).map((_, i) => `${i}px`) };
const px0_800 = { ...Array.from(Array(801)).map((_, i) => `${i}px`) };
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{html,js,ts,jsx,tsx}",
"./components/**/*.{html,js,ts,jsx,tsx}",
],
theme: {
extend: {
borderWidth: px0_10,
fontSize: px0_100,
lineHeight: px0_100,
minWidth: px0_300,
minHeight: px0_300,
maxWidth: px0_800,
spacing: px0_500,
colors: {
mainBlack: "#000",
mainWhite: "#fff",
mainRed: "#FF5757",
mainBlue: "#5757FF",
mainPink: "#FF57FF",
mainCyan: "#57FFFF",
mainYellow: "#FFFF57",
mainGreen: "#57FF57",
bgGray: "#E6E6E6",
mainGray: "#C3C3C3",
mainGray200: "#9C9C9C",
mainGray300: "#313131",
mainBlackOpacity: "#00000099",
},
screens: {
mobile: "390px",
desktop: "720px",
middle: { minWidth: "390px", maxWidth: "720px" },
},
},
},
plugins: [],
};