Modify theme styles, and refactor bun run scripts

This commit is contained in:
mitchell 2024-07-01 18:41:55 -04:00
parent f1efbde335
commit 9e8b785074
3 changed files with 15 additions and 15 deletions

View File

@ -44,15 +44,15 @@
* -------------------------------------------------------------------------- */ * -------------------------------------------------------------------------- */
:root { :root {
--vp-c-default-1: var(--vp-c-gray-1); --vp-c-default-1: #7c6f64;
--vp-c-default-2: var(--vp-c-gray-2); --vp-c-default-2: #928374;
--vp-c-default-3: var(--vp-c-gray-3); --vp-c-default-3: #a89984;
--vp-c-default-soft: var(--vp-c-gray-soft); --vp-c-default-soft: #a89984;
--vp-c-brand-1: var(--vp-c-green-1); --vp-c-brand-1: #b8bb26;
--vp-c-brand-2: var(--vp-c-green-2); --vp-c-brand-2: #98971a;
--vp-c-brand-3: var(--vp-c-green-3); --vp-c-brand-3: #458588;
--vp-c-brand-soft: var(--vp-c-green-soft); --vp-c-brand-soft: #83a598;
--vp-c-tip-1: var(--vp-c-brand-1); --vp-c-tip-1: var(--vp-c-brand-1);
--vp-c-tip-2: var(--vp-c-brand-2); --vp-c-tip-2: var(--vp-c-brand-2);
@ -94,8 +94,8 @@
--vp-home-hero-name-color: transparent; --vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient( --vp-home-hero-name-background: -webkit-linear-gradient(
120deg, 120deg,
#3880a8 30%, #458588 30%,
#32b141 #98971a
); );
--vp-home-hero-image-background-image: linear-gradient( --vp-home-hero-image-background-image: linear-gradient(

BIN
bun.lockb

Binary file not shown.

View File

@ -5,7 +5,7 @@
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.5.0", "@eslint/js": "^9.5.0",
"@types/bun": "latest", "@types/bun": "latest",
"@vueuse/components": "^10.11.0", "@vue/typescript-plugin": "^2.0.24",
"@vueuse/core": "^10.11.0", "@vueuse/core": "^10.11.0",
"eslint": "9.x", "eslint": "9.x",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
@ -20,12 +20,12 @@
"typescript": "^5.0.0" "typescript": "^5.0.0"
}, },
"scripts": { "scripts": {
"dev": "bunx --bun vitepress dev", "dev": "bun --bun vitepress dev",
"build": "bunx --bun vitepress build", "build": "bun --bun vitepress build",
"preview": "caddy file-server --listen :5173 --root ./.vitepress/dist/", "preview": "caddy file-server --listen :5173 --root ./.vitepress/dist/",
"typecheck": "bunx --bun vue-tsc", "typecheck": "bunx --bun vue-tsc",
"format": "bunx --bun prettier -w .", "format": "bun --bun prettier -w .",
"lint": "bunx --bun eslint .", "lint": "bun --bun eslint .",
"check": "bun run format && bun run lint && bun run typecheck", "check": "bun run format && bun run lint && bun run typecheck",
"clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/", "clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/",
"git:add": "bun run check && git add -p" "git:add": "bun run check && git add -p"