forked from Samsung/TizenSchool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
79 lines (76 loc) · 2.08 KB
/
astro.config.mjs
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
import { defineConfig } from "astro/config";
// https://astro.build/config
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
import svelte from "@astrojs/svelte";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), svelte()],
site: "https://tizenschool.org/",
base: "/",
markdown: {
shikiConfig: {
theme: {
colors: { "editor.background": "#f5f2f0" },
settings: [
{
scope: [
"variable",
"meta.object-literal.key",
"source.c",
"entity.name.type",
"entity.name.variable",
],
settings: { foreground: "#000" },
},
{
scope: "comment",
settings: { foreground: "#708090" },
},
{
scope: [
"keyword",
"storage.type",
"storage.modifier",
"string.quoted.double.xml",
"constant.language.null.js",
],
settings: { foreground: "#07a" },
},
{
scope: ["string", "entity.other.attribute-name", "constant"],
settings: { foreground: "#690" },
},
{
scope: "string.regexp",
settings: { foreground: "#e90" },
},
{
scope: "entity.name.function",
settings: { foreground: "#dd4a68" },
},
{
scope: "keyword.operator",
settings: { foreground: "#a67f59" },
},
{
scope: "punctuation",
settings: { foreground: "#999" },
},
{
scope: "meta.brace.round",
settings: { foreground: "#999" },
},
{
scope: ["entity.name.tag", "constant.numeric", "constant.language"],
settings: { foreground: "#905" },
},
{
scope: "entity.other.attribute-name.namespace",
settings: { foreground: "#669900b3" },
},
],
},
},
},
});