Skip to content

Commit 3def7f5

Browse files
committed
fix export formatting
1 parent dcffc66 commit 3def7f5

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

src/routes/export/+page.svelte

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@
5353
5454
const vimSnippet = highlight(
5555
`color_overrides = {
56-
all = {
57-
${Object.entries($colors$)
58-
.map(([color, value]) => ` ${color} = "${formatHex(value)}",`)
59-
.join("\n")}
60-
},
61-
},`,
56+
all = {
57+
${Object.entries($colors$)
58+
.map(([color, value]) => ` ${color} = "${formatHex(value)}",`)
59+
.join("\n")}
60+
},
61+
},`,
6262
"lua"
6363
)
6464
@@ -71,21 +71,21 @@
7171
7272
const base16Snippet = highlight(
7373
`base00: "${formatHex($colors$.base)}" # base
74-
base01: "${formatHex($colors$.mantle)}" # mantle
75-
base02: "${formatHex($colors$.surface0)}" # surface0
76-
base03: "${formatHex($colors$.surface1)}" # surface1
77-
base04: "${formatHex($colors$.surface2)}" # surface2
78-
base05: "${formatHex($colors$.text)}" # text
79-
base06: "${formatHex($colors$.rosewater)}" # rosewater
80-
base07: "${formatHex($colors$.lavender)}" # lavender
81-
base08: "${formatHex($colors$.red)}" # red
82-
base09: "${formatHex($colors$.peach)}" # peach
83-
base0A: "${formatHex($colors$.yellow)}" # yellow
84-
base0B: "${formatHex($colors$.green)}" # green
85-
base0C: "${formatHex($colors$.teal)}" # teal
86-
base0D: "${formatHex($colors$.blue)}" # blue
87-
base0E: "${formatHex($colors$.mauve)}" # mauve
88-
base0F: "${formatHex($colors$.flamingo)}" # flamingo`,
74+
base01: "${formatHex($colors$.mantle)}" # mantle
75+
base02: "${formatHex($colors$.surface0)}" # surface0
76+
base03: "${formatHex($colors$.surface1)}" # surface1
77+
base04: "${formatHex($colors$.surface2)}" # surface2
78+
base05: "${formatHex($colors$.text)}" # text
79+
base06: "${formatHex($colors$.rosewater)}" # rosewater
80+
base07: "${formatHex($colors$.lavender)}" # lavender
81+
base08: "${formatHex($colors$.red)}" # red
82+
base09: "${formatHex($colors$.peach)}" # peach
83+
base0A: "${formatHex($colors$.yellow)}" # yellow
84+
base0B: "${formatHex($colors$.green)}" # green
85+
base0C: "${formatHex($colors$.teal)}" # teal
86+
base0D: "${formatHex($colors$.blue)}" # blue
87+
base0E: "${formatHex($colors$.mauve)}" # mauve
88+
base0F: "${formatHex($colors$.flamingo)}" # flamingo`,
8989
"bash"
9090
)
9191
</script>

0 commit comments

Comments
 (0)