From 798de29f5d082cfe6e139efb81b768b470361d5a Mon Sep 17 00:00:00 2001 From: Oli Morris Date: Sun, 12 Jan 2025 00:02:03 +0000 Subject: [PATCH] docs: update --- doc/.vitepress/theme/index.js | 4 ++++ doc/.vitepress/theme/vaporwave.css | 15 +++++++++++++++ doc/configuration/others.md | 2 ++ 3 files changed, 21 insertions(+) create mode 100644 doc/.vitepress/theme/index.js create mode 100644 doc/.vitepress/theme/vaporwave.css diff --git a/doc/.vitepress/theme/index.js b/doc/.vitepress/theme/index.js new file mode 100644 index 00000000..7c02af42 --- /dev/null +++ b/doc/.vitepress/theme/index.js @@ -0,0 +1,4 @@ +import DefaultTheme from "vitepress/theme"; +import "./vaporwave.css"; + +export default DefaultTheme; diff --git a/doc/.vitepress/theme/vaporwave.css b/doc/.vitepress/theme/vaporwave.css new file mode 100644 index 00000000..6fd78d76 --- /dev/null +++ b/doc/.vitepress/theme/vaporwave.css @@ -0,0 +1,15 @@ +:root { + --vp-c-brand-1: #9a77cf; + /* --vp-nav-bg-color: #ff0000; */ +} + +.dark { + --vp-c-brand-1: #c678dd; + --vp-c-bg: #1b1d2a; + --vp-c-bg-alt: #222435; + --vp-c-gutter: #585b89; + --vp-c-divider: #428c81; + --vp-c-text-1: #b4b7cf; + --vp-c-text-2: #8e91b7; + --vp-c-text-3: #428c81; +} diff --git a/doc/configuration/others.md b/doc/configuration/others.md index b38e6df6..4fdfea6d 100644 --- a/doc/configuration/others.md +++ b/doc/configuration/others.md @@ -27,6 +27,8 @@ require("codecompanion").setup({ }), ``` +Of course, if you have your own system prompt you can specify your own language for the LLM to respond in. + ## Sending Code > [!IMPORTANT]