-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
71 lines (61 loc) · 1.47 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
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
primary: {
DEFAULT: "#1da1f2",
...colors.sky,
},
secondary: {
DEFAULT: "#F7F9F9",
dark: "#EFF3F4",
},
// TODO Maybe just include both gray and slate making gray the default gray
gray: {
DEFAULT: colors.gray[200], // Divider color mostly
...colors.gray,
},
red: {
DEFAULT: colors.red[500], // Error color mostly
...colors.red,
},
green: {
DEFAULT: colors.emerald[500],
...colors.emerald,
},
yellow: {
DEFAULT: colors.yellow[500],
...colors.yellow,
},
link: colors.sky[600],
linkHover: colors.sky[500],
},
screens: {
xs: "512px",
...defaultTheme.screens,
},
extend: {
fontSize: {
"2xs": ["0.8125rem", "1rem"],
md: [".9375rem", "1.375rem"],
},
borderColor: {
DEFAULT: colors.gray[200], // Same as divider color
},
spacing: {
13: "3.25rem",
84: "21rem",
88: "22rem",
92: "23rem",
},
},
},
plugins: [require("@tailwindcss/forms")],
};