-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
107 lines (88 loc) · 2.28 KB
/
app.vue
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<script setup lang="ts">
// import { myriad } from "@myriadjs/core";
// myriad({
// foreground: "#00008b",
// background: "#ffffff",
// accents: ["#ff9400"],
// custom: {
// link: '#0000ff',
// },
// }, {
// readability: 4,
// }).attach()
</script>
<template>
<Layout>
<NuxtPage />
</Layout>
</template>
<style lang="scss">
@import "./css";
body {
background: var(--background-10);
color: var(--foreground);
}
.container {
display: flex;
gap: var(--space-s);
flex-direction: column;
border-radius: var(--radius);
padding: var(--space-xl);
background: var(--background);
margin-bottom: var(--space-xl);
}
html {
--elements-backdrop-background: var(--background) !important;
--docus-header-title-color-static: var(--background-10) !important;
--docus-body-color: var(--background-20) !important;
--docus-body-backgroundColor: var(--background) !important;
--typography-body-backgroundColor: var(--background) !important;
--typography-body-color: var(--foreground) !important;
---13e-button-primary: var(--accent) !important;
---uk-p-button-secondary: var(--accent) !important;
--elements-text-primary-color-static: var(--foreground) !important;
--elements-border-primary-static: var(--background-10) !important;
--color-primary-400: var(--accent) !important;
}
h1 {
font-size: 32px;
font-weight: bold;
line-height: 0.8;
}
p {
max-width: 75ch;
}
h1, h2, h3, h4, p, a, a .title, button, body {
color: var(--foreground) !important;
}
a.active {
color: var(--accent) !important;
}
.button-link {
color: var(--accent-contrast) !important;
background-color: var(--accent) !important;
}
.terminal {
color: var(--foreground) !important;
background-color: var(--background) !important;
border: 1px solid var(--background-10) !important;
}
.terminal .header {
background-color: var(--background-10) !important;
border-bottom: 1px solid var(--background-10) !important;
}
.terminal .prompt {
background-color: var(--background-20) !important;
color: var(--foreground) !important;
}
.terminal .copied {
background-color: var(--background-10) !important;
color: var(--foreground) !important;
}
/* pre {
background-color: var(--background-10) !important;
} */
/* .prose-code {
border-color: var(--foreground) !important;
} */
</style>