-
Notifications
You must be signed in to change notification settings - Fork 88
/
tailwind.config.js
76 lines (75 loc) · 1.89 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
71
72
73
74
75
76
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layout/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#3B84F5",
white: "#fff",
background: {
dark: "#1a1c1f",
light: "#fff",
},
border: {
dark: "#202229",
light: "#dfdfdf",
},
text: {
dark: "#fff",
light: "#1a1c1f",
},
subtitle: {
dark: "#878787",
light: "#878787",
},
icons: {
dark: "#ffffff",
light: "#1a1c1f",
},
},
boxShadow: {
xs: "0 0 0 1px rgba(0, 0, 0, 0.16)",
sm: "0 1px 2px 0 rgba(0, 0, 0, 0.16)",
default:
"0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.03)",
md: "0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.03)",
lg: "0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02)",
xl: "0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.02)",
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.15)",
inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.04)",
outline: "0 0 0 3px rgba(66, 153, 225, 0.5)",
none: "none",
},
spacing: {
"9/16": "56.25%",
"3/4": "75%",
"1/1": "100%",
},
fontFamily: {
inter: ["Inter", "sans-serif"],
},
fontSize: {
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "2rem",
"4xl": "2.625rem",
"5xl": "3.25rem",
"6xl": "5.5rem",
},
inset: {
"1/2": "50%",
full: "100%",
},
},
},
plugins: [],
};