-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
black: "#000",
gray: {
"100": "#1f1f1f",
"200": "#1f0d0d",
"300": "rgba(255, 255, 255, 0.8)",
"400": "rgba(255, 255, 255, 0.3)",
},
white: "#fff",
whitesmoke: {
"100": "#f4f3f0",
"200": "#f4f2f0",
},
gainsboro: "rgba(217, 217, 217, 0.82)",
lightskyblue: "rgba(146, 216, 255, 0.67)",
deepskyblue: "#00b3ff",
},
spacing: {},
fontFamily: {
"ibm-plex-sans": "'IBM Plex Sans'",
"source-sans-pro": "'Source Sans Pro'",
inter: "Inter",
"baloo-da-2": "'Baloo Da 2'",
montserrat: "Montserrat",
"be-vietnam": "'Be Vietnam'",
},
borderRadius: {
"3xl": "22px",
"21xl": "40px",
mini: "15px",
"6xl": "25px",
"11xl": "30px",
"31xl": "50px",
"icon-large": "40px",
"corner-large": "16px",
},
},
fontSize: {
xs: "0.75rem",
"13xl": "2rem",
"17xl": "2.25rem",
"11xl": "1.875rem",
"36xl": "3.438rem",
"9xl": "1.75rem",
"7xl": "1.625rem",
"21xl": "2.5rem",
"29xl": "3rem",
xl: "1.25rem",
"5xl": "1.5rem",
inherit: "inherit",
},
},
corePlugins: {
preflight: false,
},
};