-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
66 lines (62 loc) · 2.51 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
body: ['Space Grotesk', 'sans-serif'],
heading: ['Space Grotesk', 'sans-serif'],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: {
main: 'rgb(var(--color-primary-main) / <alpha-value>)',
},
text: {
body: 'rgb(var(--color-text-body) / <alpha-value>)',
bold: 'rgb(var(--color-text-bold) / <alpha-value>)',
heading: 'rgb(var(--color-text-heading) / <alpha-value>)',
muted: 'rgb(var(--color-text-muted) / <alpha-value>)',
selection: 'rgb(var(--color-text-selection) / <alpha-value>)',
},
bg: {
body: 'rgb(var(--color-bg-body) / <alpha-value>)',
code: 'rgb(var(--color-bg-code) / <alpha-value>)',
selection: 'rgb(var(--color-bg-selection) / <alpha-value>)',
},
border: {
code: 'rgb(var(--color-border-code) / <alpha-value>)',
},
},
typography: theme => ({
DEFAULT: {
css: {
'h1, h2, h3, h4, h5': {
color: 'rgb(var(--color-text-heading))',
},
'--tw-prose-body': 'rgb(var(--color-text-body))',
'--tw-prose-headings': 'rgb(var(--color-text-heading))',
'--tw-prose-lead': 'rgb(var(--color-text-body))',
'--tw-prose-links': 'rgb(var(--color-text-body))',
'--tw-prose-bold': 'rgb(var(--color-text-bold))',
'--tw-prose-counters': 'rgb(var(--color-text-body))',
'--tw-prose-bullets': 'rgb(var(--color-text-body))',
'--tw-prose-hr': 'rgb(var(--color-text-muted))',
'--tw-prose-quotes': 'rgb(var(--color-text-body))',
'--tw-prose-quote-borders': 'rgb(var(--color-primary-main))',
'--tw-prose-captions': 'rgb(var(--color-primary-heading))',
'--tw-prose-quote-captions': 'rgb(var(--color-primary-heading))',
'--tw-prose-code': 'rgb(var(--color-text-code))',
'--tw-prose-pre-code': 'rgb(var(--color-text-code))',
'--tw-prose-pre-bg': 'rgb(var(--color-bg-code))',
'--tw-prose-th-borders': 'rgb(var(--color-text-muted))',
'--tw-prose-td-borders': 'rgb(var(--color-text-muted))',
},
},
}),
},
},
plugins: [require('@tailwindcss/typography')],
}