-
Notifications
You must be signed in to change notification settings - Fork 14
/
tailwind.config.js
50 lines (50 loc) · 1.12 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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"tabconf-blue": {
50: "#f3f5f6",
100: "#e6ebed",
200: "#c1cdd1",
300: "#9bafb5",
400: "#51727e",
500: "#063647",
600: "#053140",
700: "#052935",
800: "#04202b",
900: "#031a23",
},
},
typography: (theme) => ({
DEFAULT: {
css: {
code: {
fontWeight: 500,
color: theme("colors.yellow.600"),
},
"code.block": {
color: "#111827",
fontWeight: "inherit",
},
"code.block::before": {
content: '""',
},
"code.block::after": {
content: '""',
},
},
},
}),
},
},
variants: {
extend: {},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
};