@@ -17,6 +17,7 @@ module.exports = {
17
17
] ,
18
18
content : [
19
19
'./app/**/*.php' ,
20
+ './config/markdown.php' ,
20
21
'./resources/**/*.blade.php' ,
21
22
'./resources/**/*.{js,jsx}' ,
22
23
'./storage/framework/views/*.php' ,
@@ -54,8 +55,9 @@ module.exports = {
54
55
green : colors . emerald ,
55
56
} ,
56
57
fontFamily : {
57
- mono : [ 'Operator Mono' , ...defaultTheme . fontFamily . mono ] ,
58
- sans : [ 'Inter var' , 'DM Sans' , ...defaultTheme . fontFamily . sans ] ,
58
+ heading : [ 'Lexend' , ...defaultTheme . fontFamily . sans ] ,
59
+ mono : [ 'JetBrains Mono' , ...defaultTheme . fontFamily . sans ] ,
60
+ sans : [ 'DM Sans' , ...defaultTheme . fontFamily . sans ] ,
59
61
} ,
60
62
fontWeight : {
61
63
normal : 300
@@ -122,7 +124,7 @@ module.exports = {
122
124
} ,
123
125
'h1, h2, h3, h4' : {
124
126
color : theme ( 'textColor.skin.inverted' ) ,
125
- fontFamily : "'Inter var', serif"
127
+ fontFamily : theme ( 'fontFamily.heading' ) ,
126
128
} ,
127
129
p : {
128
130
fontWeight : 300
@@ -131,20 +133,28 @@ module.exports = {
131
133
borderColor : theme ( 'borderColor.skin.base' )
132
134
} ,
133
135
blockquote : {
134
- color : theme ( 'textColor.skin.inverted' )
136
+ color : theme ( 'textColor.skin.inverted' ) ,
137
+ fontStyle : 'normal' ,
138
+ } ,
139
+ 'blockquote p:first-of-type::before' : {
140
+ content : 'none' ,
141
+ } ,
142
+ 'blockquote p:first-of-type::after' : {
143
+ content : 'none' ,
144
+ } ,
145
+ code : {
146
+ fontWeight : theme ( 'fontWeight.normal' ) ,
135
147
} ,
136
148
'li strong, strong' : {
137
149
color : theme ( 'textColor.skin.inverted-muted' ) ,
138
150
fontWeight : 400
139
151
} ,
140
152
'p > code, code' : {
141
153
display : 'inline-flex' ,
142
- fontFamily : "'Operator Mono', monospace" ,
154
+ fontFamily : theme ( 'fontFamily.mono' ) ,
143
155
alignItems : 'center' ,
144
156
borderRadius : '.375rem' ,
145
- fontSize : '1rem' ,
146
- lineHeight : '1.25rem' ,
147
- fontWeight : 400 ,
157
+ fontSize : theme ( 'fontSize.base' ) ,
148
158
padding : '.125rem .625rem' ,
149
159
color : theme ( 'colors.green.800' ) ,
150
160
backgroundColor : theme ( 'colors.green.100' ) ,
0 commit comments