-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
54 lines (54 loc) · 1.25 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
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
black: "#000",
gray1: {
"100": "rgba(0, 0, 0, 0.2)",
"200": "rgba(255, 255, 255, 0.05)",
"300": "rgba(255, 255, 255, 0.8)",
},
snow: {
"100": "#fffcfc",
"200": "rgba(255, 251, 251, 0.1)",
"300": "rgba(255, 246, 246, 0.32)",
},
white: "#fff",
gainsboro: "#d9d9d9",
lavenderblush: "#f6eaea",
"gray-400": "#9ca3af",
"gray-700": "#374151",
"gray-600": "#4b5563",
"primary-500": "#3f83f8",
mediumspringgreen: "#03ff95",
},
spacing: {},
fontFamily: {
"leading-tight-text-sm-font-normal": "Inter",
roboto: "Roboto",
},
borderRadius: {
"81xl": "100px",
"3xs": "10px",
"381xl": "400px",
"245xl-5": "264.5px",
"8xs": "5px",
},
},
fontSize: {
sm: "14px",
base: "16px",
"5xl": "24px",
"12xl-7": "31.7px",
"31xl": "50px",
"lg-5": "18.5px",
lg: "18px",
inherit: "inherit",
},
},
corePlugins: {
preflight: false,
},
};