update + fix color contrasts + JS content

This commit is contained in:
Nico 2023-03-27 17:27:14 +02:00
parent f99de465d7
commit 4c7f31c080
19 changed files with 20028 additions and 1191 deletions

View file

@ -1,11 +1,11 @@
{
"hash": "47151e52",
"browserHash": "b7354247",
"hash": "35964354",
"browserHash": "c708b366",
"optimized": {
"vue": {
"src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js",
"src": "../../../../node_modules/.pnpm/vue@3.2.47/node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "cd8c06e7",
"fileHash": "84ebdea4",
"needsInterop": false
}
},

View file

@ -1,4 +1,4 @@
// node_modules/@vue/shared/dist/shared.esm-bundler.js
// node_modules/.pnpm/@vue+shared@3.2.47/node_modules/@vue/shared/dist/shared.esm-bundler.js
function makeMap(str, expectsLowerCase) {
const map2 = /* @__PURE__ */ Object.create(null);
const list = str.split(",");
@ -242,7 +242,7 @@ var getGlobalThis = () => {
return _globalThis || (_globalThis = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {});
};
// node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js
// node_modules/.pnpm/@vue+reactivity@3.2.47/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js
function warn(msg, ...args) {
console.warn(`[Vue warn] ${msg}`, ...args);
}
@ -1349,7 +1349,7 @@ var _a;
var tick = Promise.resolve();
_a = "__v_isReadonly";
// node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js
// node_modules/.pnpm/@vue+runtime-core@3.2.47/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js
var stack = [];
function pushWarningContext(vnode) {
stack.push(vnode);
@ -7934,7 +7934,7 @@ var ssrUtils = _ssrUtils;
var resolveFilter = null;
var compatUtils = null;
// node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js
// node_modules/.pnpm/@vue+runtime-dom@3.2.47/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js
var svgNS = "http://www.w3.org/2000/svg";
var doc = typeof document !== "undefined" ? document : null;
var templateContainer = doc && doc.createElement("template");
@ -9348,7 +9348,7 @@ var initDirectivesForSSR = () => {
}
};
// node_modules/vue/dist/vue.runtime.esm-bundler.js
// node_modules/.pnpm/vue@3.2.47/node_modules/vue/dist/vue.runtime.esm-bundler.js
function initDev() {
{
initCustomFormatter();

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,13 @@
{
"hash": "31f2755a",
"browserHash": "6ca55b73",
"optimized": {
"vue": {
"src": "../../../../node_modules/.pnpm/vue@3.2.47/node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "e08d3cb6",
"needsInterop": false
}
},
"chunks": {}
}

View file

@ -0,0 +1 @@
{"type":"module"}

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,13 @@
{
"hash": "c786ef8f",
"browserHash": "7338c107",
"optimized": {
"vue": {
"src": "../../../../node_modules/.pnpm/vue@3.2.47/node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "bf22e1be",
"needsInterop": false
}
},
"chunks": {}
}

View file

@ -0,0 +1 @@
{"type":"module"}

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,32 @@
:root {
/* custom colors */
--color-primary-light: hsl(11, 100%, 31%);
--color-primary-dark: hsl(11, 100%, 75%);
/* custom theme */
--vp-c-brand: var(--color-primary-light);
--vp-button-brand-text: var(--vp-c-bg);
--vp-button-brand-border: var(--color-primary-light);
--vp-custom-block-tip-bg: var(--vp-c-bg);
--vp-custom-block-danger-bg: var(--vp-c-bg);
--vp-custom-block-info-bg: var(--vp-c-bg);
--vp-custom-block-warning-bg: var(--vp-c-bg);
--vp-custom-block-tip-text: hsl(161, 96%, 20%);
--vp-custom-block-warning-text: hsl(26, 95%, 29%);
--vp-custom-block-danger-text: hsl(350, 75%, 38%);
--vp-code-font-size: 0.9375rem;
}
.dark {
--vp-c-brand: var(--color-primary-dark);
--vp-button-brand-border: var(--color-primary-dark);
--vp-custom-block-tip-bg: var(--vp-c-bg);
--vp-custom-block-danger-bg: var(--vp-c-bg);
--vp-custom-block-info-bg: var(--vp-c-bg);
--vp-custom-block-warning-bg: var(--vp-c-bg);
--vp-custom-block-tip-text: hsl(161, 78%, 43%);
--vp-custom-block-warning-text: hsl(32, 95%, 44%);
--vp-custom-block-danger-text: hsl(0, 100%, 76%);
}
:where(details summary) {
cursor: pointer;