We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26a509 commit 64419c2Copy full SHA for 64419c2
2 files changed
src/build.js
@@ -15,10 +15,7 @@ async function build() {
15
// 2. Add Shiki plugin for syntax highlighting
16
// This will automatically handle tokenizing code blocks asynchronously
17
md.use(Shiki({
18
- themes: {
19
- light: 'github-light',
20
- dark: 'github-dark',
21
- }
+ theme: 'light-plus'
22
}));
23
24
// 3. Prepare directories and load the HTML template
src/style.css
@@ -8,9 +8,10 @@ body {
8
background: #fafafa;
9
}
10
11
-/* Ensure code blocks have padding and scroll horizontally */
12
pre.shiki {
13
- padding: 1rem;
+ background-color: #FFFCF2 !important;
+ border: 1px solid #e1e4e8;
14
+ padding: 16px;
border-radius: 6px;
overflow-x: auto;
0 commit comments