diff --git a/README.md b/README.md
index 5e1a2ee..cb41af5 100644
--- a/README.md
+++ b/README.md
@@ -33,8 +33,3 @@ pnpm install
```
pnpm update
```
-
-# To Use Background
-
-Place your background image in `assets/images/background.avif` or `assets/images/background.webp`.
-Then, enable by adding or
diff --git a/src/builtin-components/Background/Background.sass b/src/builtin-components/Background/Background.sass
deleted file mode 100644
index 1e0b5bc..0000000
--- a/src/builtin-components/Background/Background.sass
+++ /dev/null
@@ -1 +0,0 @@
-@use '/src/styles/classes.sass'
diff --git a/src/builtin-components/Background/Background.tsx b/src/builtin-components/Background/Background.tsx
deleted file mode 100644
index 40d93c7..0000000
--- a/src/builtin-components/Background/Background.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import './Background.sass'
-import { Show } from 'solid-js'
-import backgroundAvif from '../../assets/images/background.avif'
-import backgroundWebp from '../../assets/images/background.webp'
-
-interface Props {
- image?: boolean
- color?: string
-}
-
-export default (props: Props) => {
- return (
- <>
-
-
-
-
-
-
-
-
-
-
-
- >
- )
-}