-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
68 lines (66 loc) · 1.46 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
// from docusaurus
sans: [
"system-ui",
"-apple-system",
"Segoe UI",
"Roboto",
"Ubuntu",
"Cantarell",
"Noto Sans",
"sans-serif",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica",
"Arial",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
],
mono: [
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
colors: {
link: "#3f4965",
"bright-gray": {
"50": "#f6f7f9",
"100": "#ebedf3",
"200": "#d3d7e4",
"300": "#adb6cc",
"400": "#818faf",
"500": "#617196",
"600": "#4c597d",
"700": "#3f4965",
"800": "#373f56",
"900": "#313749",
"950": "#212430",
},
"dark-gray": {
"600": "#444950",
"700": "#242526",
"800": "#1c1e21",
"900": "#1b1b1d",
},
},
},
},
plugins: [],
};
export default config;