-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
94 lines (93 loc) · 2.95 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
91
92
93
94
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'success': '#06764b',
'danger': '#c0151d',
'warning': '#a05b08',
'info': '#1d5cb0',
},
typography: (theme) => ({
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))',
},
iframe: {
'border-radius': '0.5rem',
},
code: {
'background-color': 'rgb(var(--color-code-bg))',
color: 'rgb(var(--color-code-text))',
padding: '0.25rem 0.5rem',
'border-radius': '0.25rem',
'font-size': '0.875rem',
'line-height': '1.5',
'font-family': "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
},
'ol > li::before': {
color: 'rgb(var(--color-text-bold))',
},
li: {
'margin-bottom': '0.5rem',
color: 'rgb(var(--color-code-text))',
'font-size': '1rem',
'line-height': '1.5',
'font-family': "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
},
'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'), require('@tailwindcss/aspect-ratio')],
};