-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
65 lines (65 loc) · 1.66 KB
/
nuxt.config.ts
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
extends: ["@nuxt-themes/elements", "@nuxt-themes/typography"],
modules: [
"@nuxtjs/tailwindcss",
"@nuxt/content",
[
"@nuxtjs/color-mode",
{
classSuffix: "",
},
],
],
generate: {
routes: ["/nuxt-core-markdown__/test"],
},
content: {
documentDriven: false,
highlight: {
theme: {
// Default theme (same as single string)
default: "github-light",
// Theme used if `html.dark`
dark: "github-dark",
// Theme used if `html.sepia`
sepia: "monokai",
},
},
},
pinceau: {
// (pinceau-transforms plugin) Sourcemap is likely to be incorrect: a plugin (pinceau-transforms) was used to transform files, but didn't generate a sourcemap for the transformation. Consult the plugin documentation for help
configLayers: [
{
tokens: {
color: {
primary: {
50: "#F1FCFF",
100: "#DCF7FF",
200: "#C5F2FF",
300: "#82E3FF",
400: "#55E1FF",
500: "#1AD6FF",
600: "#09A0C1",
700: "#024757",
800: "#00232B",
900: "#001A1F",
},
secondary: {
50: "#F2FAFF",
100: "#DFF3FF",
200: "#C6EAFF",
300: "#A1DDFF",
400: "#64C7FF",
500: "#1AADFF",
600: "#0069A6",
700: "#014267",
800: "#002235",
900: "#00131D",
},
},
},
},
],
},
});