-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
112 lines (111 loc) · 3.39 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
109
110
111
112
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./app/**/*.tsx", "./pages/**/*.tsx", "./components/**/*.tsx", "./lib/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)", "Inter", ...fontFamily.sans],
serif: ["var(--font-serif)", "Lora", ...fontFamily.serif],
mono: ["var(--font-mono)", "JetBrains Mono", ...fontFamily.mono],
mono2: ["var(--font-mono2)", "IBM Plex Mono", ...fontFamily.mono],
},
colors: {
"accent-warm": {
50: "hsl(32, 100%, 97%)",
100: "hsl(27, 100%, 94%)",
200: "hsl(21, 100%, 89%)",
300: "hsl(17, 100%, 81%)",
400: "hsl(12, 100%, 71%)",
500: "hsl(7, 93%, 60%)",
600: "hsl(2, 80%, 51%)",
700: "hsl(357, 81%, 42%)",
800: "hsl(352, 78%, 35%)",
900: "hsl(347, 69%, 31%)",
950: "hsl(341, 82%, 15%)",
},
"accent-cool": {
50: "hsl(235, 73%, 97%)",
100: "hsl(230, 74%, 94%)",
200: "hsl(234, 71%, 89%)",
300: "hsl(233, 67%, 82%)",
400: "hsl(239, 65%, 74%)",
500: "hsl(243, 61%, 63%)",
600: "hsl(248, 55%, 59%)",
700: "hsl(248, 42%, 51%)",
800: "hsl(248, 40%, 41%)",
900: "hsl(246, 35%, 34%)",
950: "hsl(248, 35%, 20%)",
},
},
animation: {
"spin-slow": "spin 5s linear infinite",
wiggle: "wiggle .8s ease-in-out infinite",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-5deg)" },
"50%": { transform: "rotate(5deg)" },
},
},
typography: (theme) => ({
DEFAULT: {
css: {
color: theme("colors.gray.900"),
a: {
color: theme("colors.accent-warm.600"),
},
code: {
color: theme("colors.pink.500"),
fontWeight: "normal",
},
"code::before": {
content: '""',
},
"code::after": {
content: '""',
},
"blockquote p:first-of-type::before": false,
"blockquote p:last-of-type::after": false,
},
},
dark: {
css: {
color: theme("colors.gray.200"),
a: {
color: theme("colors.accent-cool.400"),
},
blockquote: {
borderLeftColor: theme("colors.gray.700"),
color: theme("colors.gray.300"),
},
"h1,h2,h3,h4": {
color: theme("colors.gray.100"),
},
hr: { borderColor: theme("colors.gray.700") },
ol: {
li: {
"&:before": { color: theme("colors.gray.500") },
},
},
ul: {
li: {
"&:before": { backgroundColor: theme("colors.gray.500") },
},
},
strong: { color: theme("colors.gray.300") },
thead: {
color: theme("colors.gray.100"),
},
tbody: {
tr: {
borderBottomColor: theme("colors.gray.700"),
},
},
},
},
}),
},
},
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/forms")],
};