Skip to content

Commit 469e89e

Browse files
chore: 緑色ベースにしてnoindexをつける (#17)
1 parent 7049b55 commit 469e89e

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Diff for: src/.vitepress/config.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ export default defineConfig({
66
description: "無料で使える中品質なテキスト読み上げソフトウェア。",
77
lang: "ja-JP",
88
base: "/WIP_docs/",
9-
head: [["link", { rel: "icon", href: "/WIP_docs/favicon.ico" }]],
9+
head: [
10+
// 公開時はnoindexを削除する
11+
["meta", { name: "robots", content: "noindex" }],
12+
13+
["meta", { name: "theme-color", content: "#a5d4ad" }],
14+
["link", { rel: "icon", href: "/WIP_docs/favicon.ico" }],
15+
],
1016
cleanUrls: true,
1117
themeConfig: {
1218
logo: "/favicon-32x32.png",

Diff for: src/.vitepress/theme/style.css

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
:root {
22
--vp-layout-top-height: 3rem;
3+
4+
/*
5+
* メインテーマカラーを緑色にする。
6+
*/
7+
--vp-c-brand-1: var(--vp-c-green-1);
8+
--vp-c-brand-2: var(--vp-c-green-2);
9+
--vp-c-brand-3: var(--vp-c-green-3);
10+
--vp-c-brand-soft: var(--vp-c-green-soft);
311
}

0 commit comments

Comments
 (0)