This repository was archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
118 lines (114 loc) · 2.69 KB
/
tailwind.config.js
File metadata and controls
118 lines (114 loc) · 2.69 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
module.exports = {
purge: ["./components/**/*.tsx", "./pages/**/*.tsx"],
darkMode: "class",
mode: "jit",
theme: {
extend: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
colors: {
"gray-light": "#1E90FF",
"gray-dark": "#111",
"accent-1": "#FAFAFA",
"accent-2": "#EAEAEA",
"accent-7": "#333",
success: "#0070f3",
cyan: "#79FFE1",
brand: {
100: "#82dab0",
200: "#69d3a0",
300: "#50cb90",
400: "#C5F1DD",
500: "#9FE7C7",
600: "#65D9A5",
700: "#3ECF8E",
800: "#38BC81",
900: "#10633E",
},
// Joshen TODO: At the end just rearrange the values
dark: {
100: "#eeeeee",
200: "#e0e0e0",
300: "#bbbbbb",
400: "#666666",
500: "#444444",
600: "#2a2a2a",
700: "#1f1f1f",
800: "#181818",
900: "#0f0f0f",
},
gray: {
100: "#eeeeee",
200: "#e0e0e0",
300: "#bbbbbb",
400: "#666666",
500: "#444444",
600: "#2a2a2a",
700: "#1f1f1f",
800: "#181818",
900: "#0f0f0f",
},
},
spacing: {
28: "7rem",
},
letterSpacing: {
tighter: "-.04em",
},
lineHeight: {
tight: 1.2,
},
fontSize: {
"5xl": "2.5rem",
"6xl": "2.75rem",
"7xl": "4.5rem",
"8xl": "6.25rem",
},
boxShadow: {
"light-small": "0px 4px 8px 2px rgba(107, 114, 128, 0.08)",
small: "0 5px 10px rgba(0, 0, 0, 0.12)",
medium: "0 8px 30px rgba(0, 0, 0, 0.12)",
override: "0px 0px 0px rgba(0, 0, 0, 0)",
},
fontFamily: {
sans: [
"BlinkMacSystemFont",
"-apple-system",
"Inter",
"Roboto",
"Oxygen",
"Ubuntu",
"Cantarell",
"Fira Sans",
"Droid Sans",
"Helvetica Neue",
"Helvetica",
"Arial",
"sans-serif",
],
mono: ["Source Code Pro", "Menlo", "monospace"],
},
stroke: (theme) => ({
white: theme("colors.white"),
black: theme("colors.black"),
}),
},
},
variants: {
extend: {
inset: ["group-hover"],
stroke: ["dark"],
height: ["hover"],
backgroundColor: ["active"],
},
},
plugins: [],
corePlugins: {
preflight: true,
},
};