-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (58 loc) · 2.63 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
typography: ({ theme }) => ({
pink: {
css: {
'--tw-prose-body': theme('colors.white'),
'--tw-prose-headings': theme('colors.purple[900]'),
'--tw-prose-lead': theme('colors.purple[700]'),
'--tw-prose-links': theme('colors.purple[900]'),
'--tw-prose-bold': theme('colors.purple[900]'),
'--tw-prose-counters': theme('colors.purple[600]'),
'--tw-prose-bullets': theme('colors.purple[400]'),
'--tw-prose-hr': theme('colors.purple[300]'),
'--tw-prose-quotes': theme('colors.purple[900]'),
'--tw-prose-quote-borders': theme('colors.purple[300]'),
'--tw-prose-captions': theme('colors.purple[700]'),
'--tw-prose-code': theme('colors.purple[900]'),
'--tw-prose-pre-code': theme('colors.purple[100]'),
'--tw-prose-pre-bg': theme('colors.purple[900]'),
'--tw-prose-th-borders': theme('colors.purple[300]'),
'--tw-prose-td-borders': theme('colors.purple[200]'),
'--tw-prose-invert-body': theme('colors.purple[200]'),
'--tw-prose-invert-headings': theme('colors.white'),
'--tw-prose-invert-lead': theme('colors.purple[300]'),
'--tw-prose-invert-links': theme('colors.white'),
'--tw-prose-invert-bold': theme('colors.white'),
'--tw-prose-invert-counters': theme('colors.purple[400]'),
'--tw-prose-invert-bullets': theme('colors.purple[600]'),
'--tw-prose-invert-hr': theme('colors.purple[700]'),
'--tw-prose-invert-quotes': theme('colors.purple[100]'),
'--tw-prose-invert-quote-borders': theme('colors.purple[700]'),
'--tw-prose-invert-captions': theme('colors.purple[400]'),
'--tw-prose-invert-code': theme('colors.white'),
'--tw-prose-invert-pre-code': theme('colors.purple[300]'),
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
'--tw-prose-invert-th-borders': theme('colors.purple[600]'),
'--tw-prose-invert-td-borders': theme('colors.purple[700]'),
},
},
}),
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [
require('@tailwindcss/typography')
],
}