From a31d477a8f09de804c49e2344547d17b7f92f98e Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 07:15:20 +0530 Subject: [PATCH 01/10] Update constants.ts --- docs/.vitepress/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vitepress/constants.ts b/docs/.vitepress/constants.ts index 7f528e868..e28151fd8 100644 --- a/docs/.vitepress/constants.ts +++ b/docs/.vitepress/constants.ts @@ -21,9 +21,9 @@ import { transform, transformGuide } from './transformer' // @unocss-include export const meta = { - name: 'freemediaheckyeah', + name: 'amoledfreemediaheckyeah', description: 'The largest collection of free stuff on the internet!', - hostname: 'https://fmhy.net', + hostname: 'https://a-fmhy.pages.dev', keywords: ['stream', 'movies', 'gaming', 'reading', 'anime'], build: { api: true, From b043b3ad22524a73f398ff6bf2e8d36e0f0c4108 Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 07:17:48 +0530 Subject: [PATCH 02/10] Update constants.ts --- docs/.vitepress/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vitepress/constants.ts b/docs/.vitepress/constants.ts index e28151fd8..7c7c43037 100644 --- a/docs/.vitepress/constants.ts +++ b/docs/.vitepress/constants.ts @@ -22,9 +22,9 @@ import { transform, transformGuide } from './transformer' export const meta = { name: 'amoledfreemediaheckyeah', - description: 'The largest collection of free stuff on the internet!', + description: 'The largest collection of free stuff on the internet! in amoled!', hostname: 'https://a-fmhy.pages.dev', - keywords: ['stream', 'movies', 'gaming', 'reading', 'anime'], + keywords: ['stream', 'movies', 'gaming', 'reading', 'anime', 'amoled'], build: { api: true, nsfw: true From d8bacb8cf5bcd3b3a53e8e6af672bfd27842505c Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 07:20:12 +0530 Subject: [PATCH 03/10] Update index.md --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 1f294e970..ad35e5bf3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,8 +4,8 @@ layout: home description: The largest collection of free stuff on the internet! hero: - name: freemediaheckyeah - tagline: The largest collection of free stuff on the internet! + name: amoledfreemediaheckyeah + tagline: The largest collection of free stuff on the internet! in amoled! announcement: title: Oct 2025 Updates 🎃 link: /posts/oct-2025 From 2bb57315b3bd2428f3d519193fe82aabaffff956 Mon Sep 17 00:00:00 2001 From: LandWarderer2772 <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:30:37 +0530 Subject: [PATCH 04/10] everythin pure blak now Updated all dark mode and Halloween theme background color variables from dark gray values to pure black (rgb(0, 0, 0)) AMOLED BABYYYYYY --- docs/.vitepress/theme/style.scss | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/.vitepress/theme/style.scss b/docs/.vitepress/theme/style.scss index 4c69e7367..0377fc979 100644 --- a/docs/.vitepress/theme/style.scss +++ b/docs/.vitepress/theme/style.scss @@ -92,10 +92,10 @@ body { /* Apply Halloween theme by default - (for dark mode) */ .dark { - --vp-c-bg: rgb(15, 15, 15) !important; - --vp-c-bg-alt: rgb(12, 12, 12) !important; - --vp-c-bg-elv: rgba(12, 12, 12, 0.8) !important; - --vp-c-bg-soft: rgb(12, 12, 12) !important; + --vp-c-bg: rgb(0, 0, 0) !important; + --vp-c-bg-alt: rgb(0, 0, 0) !important; + --vp-c-bg-elv: rgba(0, 0, 0, 0.8) !important; + --vp-c-bg-soft: rgb(0, 0, 0) !important; --vp-button-alt-bg: #8b5cf6 !important; --vp-button-alt-text: #e9d5ff !important; --vp-button-alt-hover-bg: #a855f7 !important; @@ -109,11 +109,11 @@ body { } .dark body { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } .dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } .dark { @@ -124,9 +124,9 @@ body { --vp-c-brand-soft: theme('colors.swarm.300'); /* Colors: Background */ - --vp-c-bg: rgb(26, 26, 26); - --vp-c-bg-alt: rgb(23, 23, 23); - --vp-c-bg-elv: rgba(23, 23, 23, 0.8); + --vp-c-bg: rgb(0, 0, 0); + --vp-c-bg-alt: rgb(0, 0, 0); + --vp-c-bg-elv: rgba(0, 0, 0, 0.8); /* Colors: Custom Block */ /** Info */ @@ -192,10 +192,10 @@ html[data-halloween-theme]:not(.dark) #app { /* Halloween theme overrides - (for dark mode) */ html[data-halloween-theme].dark { - --vp-c-bg: rgb(15, 15, 15) !important; - --vp-c-bg-alt: rgb(12, 12, 12) !important; - --vp-c-bg-elv: rgba(12, 12, 12, 0.8) !important; - --vp-c-bg-soft: rgb(12, 12, 12) !important; + --vp-c-bg: rgb(0, 0, 0) !important; + --vp-c-bg-alt: rgb(0, 0, 0) !important; + --vp-c-bg-elv: rgba(0, 0, 0, 0.8) !important; + --vp-c-bg-soft: rgb(0, 0, 0) !important; --vp-button-alt-bg: #8b5cf6 !important; --vp-button-alt-text: #e9d5ff !important; --vp-button-alt-hover-bg: #a855f7 !important; @@ -207,11 +207,11 @@ html[data-halloween-theme].dark { --vp-button-brand-hover-border: #ea580c !important; --vp-button-brand-hover-text: #fff !important; - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } html[data-halloween-theme].dark body { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } html[data-halloween-theme].dark .VPApp, @@ -220,7 +220,7 @@ html[data-halloween-theme].dark .VPContent, html[data-halloween-theme].dark .VPHome, html[data-halloween-theme].dark .VPHero, html[data-halloween-theme].dark #app { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } .vp-doc a { From ddd7de585dc543ca95144fc9f0d02daa5df976c3 Mon Sep 17 00:00:00 2001 From: LandWarderer2772 <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:31:43 +0530 Subject: [PATCH 05/10] idk that it bothered me that hyphen was needed plus gotta give some credit to me for amoled BUT IM STILL GRATEFUL TO THE GREAT PPL WHO BUILT THIS --- docs/.vitepress/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vitepress/constants.ts b/docs/.vitepress/constants.ts index 7c7c43037..a6fb7d17f 100644 --- a/docs/.vitepress/constants.ts +++ b/docs/.vitepress/constants.ts @@ -21,7 +21,7 @@ import { transform, transformGuide } from './transformer' // @unocss-include export const meta = { - name: 'amoledfreemediaheckyeah', + name: 'amoled-freemediaheckyeah', description: 'The largest collection of free stuff on the internet! in amoled!', hostname: 'https://a-fmhy.pages.dev', keywords: ['stream', 'movies', 'gaming', 'reading', 'anime', 'amoled'], @@ -59,7 +59,7 @@ export const commitRef = ? formatCommitRef(process.env.COMMIT_REF) : 'dev' -export const feedback = `Made with ❤` +export const feedback = `Made with ❤
Amoled by land_lmao
` export const search: DefaultTheme.Config['search'] = { options: { From a8d87b3c7a0bcc6ffb6c0b6763c3e3b7600d5d7c Mon Sep 17 00:00:00 2001 From: LandWarderer2772 <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:36:47 +0530 Subject: [PATCH 06/10] forgot this mb --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index ad35e5bf3..fbd8cf36b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,7 +4,7 @@ layout: home description: The largest collection of free stuff on the internet! hero: - name: amoledfreemediaheckyeah + name: amoled-freemediaheckyeah tagline: The largest collection of free stuff on the internet! in amoled! announcement: title: Oct 2025 Updates 🎃 From a53ad8f33ef1cbbc28d34ea48f8fd864a8ea8c78 Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 19:00:34 +0530 Subject: [PATCH 07/10] Update constants.ts --- docs/.vitepress/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vitepress/constants.ts b/docs/.vitepress/constants.ts index a6fb7d17f..85526c297 100644 --- a/docs/.vitepress/constants.ts +++ b/docs/.vitepress/constants.ts @@ -59,7 +59,7 @@ export const commitRef = ? formatCommitRef(process.env.COMMIT_REF) : 'dev' -export const feedback = `Made with ❤Amoled by land_lmao
` +export const feedback = `Made with ❤