-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (43 loc) · 1.04 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
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import("tailwindcss").Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: "#262738",
"code-background": "#2f3044",
accent: "#61f4ef",
"heading": "#e4e9f8",
text: "#d5d9ee",
"text-alt": "#b0bccc",
},
fontFamily: {
assistant: ["Assistant", ...fontFamily.sans],
sans: ["IBM Plex Sans", ...fontFamily.sans],
mono: ["JetBrains Mono", ...fontFamily.mono],
},
typography: () => ({
lg: {
css: {
"font-size": "16px",
"line-height": "1.5",
}
},
invert: {
css: {
"--tw-prose-invert-body": "#d5d9ee",
"--tw-prose-bullets": "#898f9a",
},
},
}),
},
},
plugins: [
require("@tailwindcss/typography"),
],
};