Skip to content

Commit a8fe024

Browse files
authored
fix: improve code block background color in hints (#541)
1 parent 8d2b742 commit a8fe024

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

exampleSite/content/posts/advanced/shortcodes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -208,31 +208,31 @@ Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclima
208208

209209
{{< hint type=note >}}
210210
**Markdown content**\
211-
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
211+
Dolor sit, sumo unique `argument um no`. Gracie nominal id xiv. Romanesque acclimates investiture.
212212
Ornateness bland it ex enc, est yeti am bongo detract re.
213213
{{< /hint >}}
214214

215215
{{< hint type=tip >}}
216216
**Markdown content**\
217-
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
217+
Dolor sit, sumo unique `argument um no`. Gracie nominal id xiv. Romanesque acclimates investiture.
218218
Ornateness bland it ex enc, est yeti am bongo detract re.
219219
{{< /hint >}}
220220

221221
{{< hint type=important >}}
222222
**Markdown content**\
223-
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
223+
Dolor sit, sumo unique `argument um no`. Gracie nominal id xiv. Romanesque acclimates investiture.
224224
Ornateness bland it ex enc, est yeti am bongo detract re.
225225
{{< /hint >}}
226226

227227
{{< hint type=caution >}}
228228
**Markdown content**\
229-
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
229+
Dolor sit, sumo unique `argument um no`. Gracie nominal id xiv. Romanesque acclimates investiture.
230230
Ornateness bland it ex enc, est yeti am bongo detract re.
231231
{{< /hint >}}
232232

233233
{{< hint type=warning >}}
234234
**Markdown content**\
235-
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
235+
Dolor sit, sumo unique `argument um no`. Gracie nominal id xiv. Romanesque acclimates investiture.
236236
Ornateness bland it ex enc, est yeti am bongo detract re.
237237

238238
Romanesque acclimates investiture.

src/sass/_shortcodes.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,12 @@
190190
background-color: scale-color($color, $lightness: 95%, $saturation: -30%);
191191
color: $body-font-color;
192192
padding: 0;
193+
194+
code,
195+
pre {
196+
background-color: scale-color($color, $lightness: 80%, $saturation: -75%);
197+
color: $code-font-color;
198+
}
193199
}
194200
}
195201

0 commit comments

Comments
 (0)