-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
89 lines (87 loc) · 3.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import type { Config } from 'tailwindcss'
import { fontFamily } from 'tailwindcss/defaultTheme'
import colors from 'tailwindcss/colors'
import typography from '@tailwindcss/typography'
/** @type {import('tailwindcss').Config} */
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./content/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
lineHeight: {
11: '2.75rem',
12: '3rem',
13: '3.25rem',
14: '3.5rem',
},
fontFamily: {
sans: ['var(--font-mitr)', ...fontFamily.sans],
},
colors: {
primary: colors.amber,
gray: colors.slate,
},
typography: ({ theme }: any) => ({
DEFAULT: {
css: {
a: {
'&:hover': {
color: `${theme('colors.primary[600]')}`,
},
'text-decoration': 'none',
},
'--tw-prose-body': theme('colors.primary[900]'),
'--tw-prose-headings': theme('colors.primary[500]'),
'--tw-prose-lead': theme('colors.primary[700]'),
'--tw-prose-links': theme('colors.primary[500]'),
'--tw-prose-bold': theme('colors.primary[900]'),
'--tw-prose-counters': theme('colors.primary[600]'),
'--tw-prose-bullets': theme('colors.primary[400]'),
'--tw-prose-hr': theme('colors.primary[500]'),
'--tw-prose-quotes': theme('colors.primary[900]'),
'--tw-prose-quote-borders': theme('colors.primary[300]'),
'--tw-prose-captions': theme('colors.primary[700]'),
'--tw-prose-code': theme('colors.primary[500]'),
'--tw-prose-pre-code': theme('colors.primary[500]'),
'--tw-prose-pre-bg': theme('colors.primary[900]'),
'--tw-prose-th-borders': theme('colors.primary[300]'),
'--tw-prose-td-borders': theme('colors.primary[200]'),
'--tw-prose-invert-body': theme('colors.gray[100]'),
'--tw-prose-invert-headings': theme('colors.gray[200]'),
'--tw-prose-invert-lead': theme('colors.primary[300]'),
'--tw-prose-invert-links': theme('colors.primary[500]'),
'--tw-prose-invert-bold': theme('colors.white'),
'--tw-prose-invert-counters': theme('colors.primary[400]'),
'--tw-prose-invert-bullets': theme('colors.primary[600]'),
'--tw-prose-invert-hr': theme('colors.primary[700]'),
'--tw-prose-invert-quotes': theme('colors.primary[100]'),
'--tw-prose-invert-quote-borders': theme('colors.primary[700]'),
'--tw-prose-invert-captions': theme('colors.primary[400]'),
'--tw-prose-invert-code': theme('colors.primary[300]'),
'--tw-prose-invert-pre-code': theme('colors.primary[300]'),
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
'--tw-prose-invert-th-borders': theme('colors.primary[600]'),
'--tw-prose-invert-td-borders': theme('colors.primary[700]'),
},
},
invert: {
css: {
a: {
'&:hover': {
color: `${theme('colors.primary[400]')}`,
},
'text-decoration': 'none',
},
},
},
}),
},
},
plugins: [typography],
}
export default config