-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
90 lines (90 loc) · 2.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.astro'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
body: ['Space Grotesk', 'sans-serif'],
heading: ['Space Grotesk', 'sans-serif'],
},
colors: {
transparent: 'transparent',
primary: {
main: 'rgb(var(--color-main) / <alpha-value>)',
accent: 'rgb(var(--color-accent) / <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>)',
link: 'rgb(var(--color-text-link) / <alpha-value>)',
selection: 'rgb(var(--color-text-selection) / <alpha-value>)',
},
bg: {
body: 'rgb(var(--color-bg-body) / <alpha-value>)',
selection: 'rgb(var(--color-bg-selection) / <alpha-value>)',
},
border: {
code: 'rgb(var(--color-border-code) / <alpha-value>)',
},
},
typography: () => ({
DEFAULT: {
css: {
a: {
'text-decoration': 'none',
'background-repeat': 'no-repeat',
'background-size': '100% 1.5px',
'background-position': '0 100%',
'background-image':
'linear-gradient(to right, rgb(var(--color-text-link)/1), rgb(var(--color-text-link)/1))',
'&:hover': {
color: 'rgb(var(--color-text-link))',
},
},
'h1, h2, h3, h4, h5': {
color: 'rgb(var(--color-text-heading))',
},
'code::before': {
content: 'none',
},
'code::after': {
content: 'none',
},
blockquote: {
border: 'none',
position: 'relative',
width: '96%',
margin: '0 auto',
'font-size': '1.0625em',
'padding-top': '1.5rem',
'padding-bottom': '0.5rem',
'padding-left': '1.5rem',
'padding-right': '1.5rem',
},
'blockquote::before': {
'font-family': 'Arial',
content: "'“'",
'font-size': '4em',
color: 'rgb(var(--color-text-bold))',
position: 'absolute',
left: '-10px',
top: '-10px',
},
'blockquote::after': {
content: '',
},
'blockquote p:first-of-type::before': {
content: '',
},
'blockquote p:last-of-type::after': {
content: '',
},
},
},
}),
},
},
plugins: [require('@tailwindcss/typography')],
};