-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (70 loc) · 1.51 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
white: "#fff",
"gray-500": "#6d737a",
"gray-black": "#1b1d1f",
"primary-50": "#edeff6",
gray1: "rgba(0, 0, 0, 0.5)",
darkgray: "#9c9c9c",
darkslategray: "#434343",
lightslategray: "#889099",
"primary-800": "#1e2640",
whitesmoke: {
"100": "#eaeaea",
"200": "#e7e9eb",
},
gainsboro: "rgba(226, 226, 226, 0.1)",
"gray-700": "#363a3d",
darkslateblue: "#4a60a1",
"primary-700": "#2c3a61",
"primary-900": "#0f1320",
},
spacing: {},
fontFamily: {
"header-heading-4": "'Public Sans'",
roboto: "Roboto",
poppins: "Poppins",
"body-large-400": "Inter",
},
borderRadius: {
"3xs": "10px",
"11xs-5": "1.5px",
},
},
fontSize: {
"5xl": "24px",
"3xl": "22px",
base: "16px",
xl: "20px",
"21xl": "40px",
"xs-6": "11.6px",
"2xs-8": "10.8px",
"sm-6": "13.6px",
"mini-5": "14.5px",
"26xl": "45px",
lg: "18px",
"13xl": "32px",
"45xl": "64px",
"33xl": "52px",
inherit: "inherit",
},
screens: {
lg: {
max: "1200px",
},
md: {
max: "960px",
},
sm: {
max: "420px",
},
},
},
corePlugins: {
preflight: false,
},
};