diff --git a/.vitepress/theme/style.css b/.vitepress/theme/style.css index 47d597f..7349289 100644 --- a/.vitepress/theme/style.css +++ b/.vitepress/theme/style.css @@ -44,15 +44,15 @@ * -------------------------------------------------------------------------- */ :root { - --vp-c-default-1: var(--vp-c-gray-1); - --vp-c-default-2: var(--vp-c-gray-2); - --vp-c-default-3: var(--vp-c-gray-3); - --vp-c-default-soft: var(--vp-c-gray-soft); + --vp-c-default-1: #7c6f64; + --vp-c-default-2: #928374; + --vp-c-default-3: #a89984; + --vp-c-default-soft: #a89984; - --vp-c-brand-1: var(--vp-c-green-1); - --vp-c-brand-2: var(--vp-c-green-2); - --vp-c-brand-3: var(--vp-c-green-3); - --vp-c-brand-soft: var(--vp-c-green-soft); + --vp-c-brand-1: #b8bb26; + --vp-c-brand-2: #98971a; + --vp-c-brand-3: #458588; + --vp-c-brand-soft: #83a598; --vp-c-tip-1: var(--vp-c-brand-1); --vp-c-tip-2: var(--vp-c-brand-2); @@ -94,8 +94,8 @@ --vp-home-hero-name-color: transparent; --vp-home-hero-name-background: -webkit-linear-gradient( 120deg, - #3880a8 30%, - #32b141 + #458588 30%, + #98971a ); --vp-home-hero-image-background-image: linear-gradient( diff --git a/bun.lockb b/bun.lockb index 7cd14c2..fb5d987 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index b2cd4a2..4e2e7a3 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "devDependencies": { "@eslint/js": "^9.5.0", "@types/bun": "latest", - "@vueuse/components": "^10.11.0", + "@vue/typescript-plugin": "^2.0.24", "@vueuse/core": "^10.11.0", "eslint": "9.x", "eslint-config-prettier": "^9.1.0", @@ -20,12 +20,12 @@ "typescript": "^5.0.0" }, "scripts": { - "dev": "bunx --bun vitepress dev", - "build": "bunx --bun vitepress build", + "dev": "bun --bun vitepress dev", + "build": "bun --bun vitepress build", "preview": "caddy file-server --listen :5173 --root ./.vitepress/dist/", "typecheck": "bunx --bun vue-tsc", - "format": "bunx --bun prettier -w .", - "lint": "bunx --bun eslint .", + "format": "bun --bun prettier -w .", + "lint": "bun --bun eslint .", "check": "bun run format && bun run lint && bun run typecheck", "clean": "rm -rf ./.vitepress/cache/ ./.vitepress/dist/", "git:add": "bun run check && git add -p"