diff --git a/website/README.md b/website/README.md
index 79f01419..7366366e 100644
--- a/website/README.md
+++ b/website/README.md
@@ -46,22 +46,6 @@ Welcome! Check out [our documentation](https://docs.astro.build) or jump into ou
`src/config.ts` contains several data objects that describe metadata about your site like title, description, default language, and Open Graph details. You can customize these to match your project.
-### CSS styling
-
-The theme's look and feel is controlled by a few key variables that you can customize yourself. You'll find them in the `src/styles/theme.css` CSS file.
-
-If you've never worked with CSS variables before, give [MDN's guide on CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) a quick read.
-
-This theme uses a "cool blue" accent color by default. To customize this for your project, change the `--theme-accent` variable to whatever color you'd like:
-
-```diff
-/* src/styles/theme.css */
-:root {
- color-scheme: light;
-- --theme-accent: hsla(var(--color-blue), 1);
-+ --theme-accent: hsla(var(--color-red), 1); /* or: hsla(#FF0000, 1); */
-```
-
## Page metadata
Astro uses frontmatter in Markdown pages to choose layouts and pass properties to those layouts. If you are using the default layout, you can customize the page in many different ways to optimize SEO and other things. For example, you can use the `title` and `description` properties to set the document title, meta title, meta description, and Open Graph description.
diff --git a/website/src/components/HeadCommon.astro b/website/src/components/HeadCommon.astro
index d77e4a90..18368f22 100644
--- a/website/src/components/HeadCommon.astro
+++ b/website/src/components/HeadCommon.astro
@@ -1,5 +1,4 @@
---
-import '../styles/theme.css';
import '../styles/index.css';
---
@@ -15,23 +14,20 @@ import '../styles/index.css';
-
+
diff --git a/website/src/components/RightSidebar/MoreMenu.astro b/website/src/components/RightSidebar/MoreMenu.astro
index 401dcabe..e68ec6f3 100644
--- a/website/src/components/RightSidebar/MoreMenu.astro
+++ b/website/src/components/RightSidebar/MoreMenu.astro
@@ -14,7 +14,7 @@ const showMoreSection = CONFIG.COMMUNITY_INVITE_URL;
{
editHref && (