From 25fb8b5158dcfd99244a406da855b533894d3850 Mon Sep 17 00:00:00 2001 From: Disservin Date: Tue, 24 Sep 2024 20:39:28 +0200 Subject: [PATCH] Make green --- .vitepress/theme/custom.css | 13 +++++++++++++ .vitepress/theme/index.ts | 5 +++++ 2 files changed, 18 insertions(+) create mode 100644 .vitepress/theme/custom.css create mode 100644 .vitepress/theme/index.ts diff --git a/.vitepress/theme/custom.css b/.vitepress/theme/custom.css new file mode 100644 index 0000000..f9dd03d --- /dev/null +++ b/.vitepress/theme/custom.css @@ -0,0 +1,13 @@ +:root { + --vp-c-indigo-1: #18794e; /* Changed blue to green */ + --vp-c-indigo-2: #299764; /* Changed blue to green */ + --vp-c-indigo-3: #30a46c; /* Changed blue to green */ + --vp-c-indigo-soft: rgba(16, 185, 129, 0.14); /* Changed blue to green */ + } + + .dark { + --vp-c-indigo-1: #3dd68c; /* Changed blue to green */ + --vp-c-indigo-2: #30a46c; /* Changed blue to green */ + --vp-c-indigo-3: #298459; /* Changed blue to green */ + --vp-c-indigo-soft: rgba(16, 185, 129, 0.16); /* Changed blue to green */ + } \ No newline at end of file diff --git a/.vitepress/theme/index.ts b/.vitepress/theme/index.ts new file mode 100644 index 0000000..e934be5 --- /dev/null +++ b/.vitepress/theme/index.ts @@ -0,0 +1,5 @@ +// .vitepress/theme/index.js +import DefaultTheme from "vitepress/theme"; +import "./custom.css"; + +export default DefaultTheme;