-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
108 lines (106 loc) · 2.71 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
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
const colors = require("tailwindcss/colors");
module.exports = {
theme: {
extend: {
screens: {
"mob-me": "545px",
"blog-lg": "992px",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.coolGray,
red: colors.red,
yellow: colors.amber,
green: colors.emerald,
blue: colors.blue,
indigo: colors.indigo,
purple: colors.violet,
pink: {
...colors.pink,
90: "#222",
80: "#333",
},
customBlue: {
100: "#FF0000",
200: "#F203FF",
500: "#A24F11",
},
primary: {
"tint-3": "#f1f9ff", // 100
"tint-2": "#e1f3ff", // 200
"tint-1": "#c9eaff",
DEFAULT: "#74c0fc", // 400
"shade-1": "#3f9cf5",
"shade-2": "#3688e3", // 600
"shade-3": "#317acc",
},
accent: {
DEFAULT: "#888",
"lightest-on-fff": "#767676",
"lightest-on-tint-3": "#5f5f5f",
333: "#333333",
555: "#555555",
},
},
backgroundColor: (theme) => theme("colors"),
borderColor: (theme) => ({
...theme("colors"),
DEFAULT: theme("colors.gray.200", "currentColor"),
}),
caretColor: (theme) => theme("colors"),
divideColor: (theme) => theme("borderColor"),
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
serif: [
"Lora",
"ui-serif",
"Georgia",
"Cambria",
'"Times New Roman"',
"Times",
"serif",
],
mono: [
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
'"Liberation Mono"',
'"Courier New"',
"monospace",
],
},
gradientColorStops: (theme) => theme("colors"),
placeholderColor: (theme) => theme("colors"),
ringColor: (theme) => ({
DEFAULT: theme("colors.blue.500", "#3b82f6"),
...theme("colors"),
}),
ringOffsetColor: (theme) => theme("colors"),
textColor: (theme) => theme("colors"),
fill: (theme) => theme("colors"),
stroke: (theme) => theme("colors"),
},
},
plugins: [],
};