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 ❤
Amoled by land_lmao
` export const search: DefaultTheme.Config['search'] = { options: { From b719c81f55a4c43875622a9a01607fdcf5817289 Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:04:49 +0530 Subject: [PATCH 08/10] Change background colors to pure black theme --- .../theme/components/ColorPicker.vue | 96 ++++++++++++++----- 1 file changed, 73 insertions(+), 23 deletions(-) diff --git a/docs/.vitepress/theme/components/ColorPicker.vue b/docs/.vitepress/theme/components/ColorPicker.vue index e4be89abf..4c4460025 100644 --- a/docs/.vitepress/theme/components/ColorPicker.vue +++ b/docs/.vitepress/theme/components/ColorPicker.vue @@ -78,7 +78,7 @@ const updateThemeColor = (colorName: ColorNames) => { } ` } else { - // Remove Halloween theme and apply other theme with normal backgrounds + // Remove Halloween theme and apply other theme with pure black backgrounds (but exclude buttons) htmlElement.classList.remove('theme-halloween') css.value = ` @@ -88,10 +88,10 @@ const updateThemeColor = (colorName: ColorNames) => { --vp-c-brand-2: ${colorSet[600]}; --vp-c-brand-3: ${colorSet[800]}; --vp-c-brand-soft: ${colorSet[400]}; - --vp-c-bg: #ffffff !important; - --vp-c-bg-alt: #f9f9f9 !important; - --vp-c-bg-elv: rgba(255, 255, 255, 0.7) !important; - --vp-c-bg-soft: #f9f9f9 !important; + --vp-c-bg: #000000 !important; + --vp-c-bg-alt: #000000 !important; + --vp-c-bg-elv: #000000 !important; + --vp-c-bg-soft: #000000 !important; } .dark { @@ -100,42 +100,90 @@ const updateThemeColor = (colorName: ColorNames) => { --vp-c-brand-2: ${colorSet[500]}; --vp-c-brand-3: ${colorSet[700]}; --vp-c-brand-soft: ${colorSet[300]}; - --vp-c-bg: rgb(26, 26, 26) !important; - --vp-c-bg-alt: rgb(23, 23, 23) !important; - --vp-c-bg-elv: rgba(23, 23, 23, 0.8) !important; - --vp-c-bg-soft: rgb(23, 23, 23) !important; + --vp-c-bg: #000000 !important; + --vp-c-bg-alt: #000000 !important; + --vp-c-bg-elv: #000000 !important; + --vp-c-bg-soft: #000000 !important; } + /* Main page backgrounds - pure black */ html, body { - background-color: #ffffff !important; + background-color: #000000 !important; } - .VPApp, .Layout, .VPContent, .VPHome, .VPHero, #app, .vp-doc { - background-color: #ffffff !important; + /* VitePress layout containers - pure black */ + .VPApp, .Layout, .VPContent, .VPHome, .VPHero, #app { + background-color: #000000 !important; } - .VPHome { - background-color: #ffffff !important; + /* Content areas - pure black */ + .vp-doc, .VPDoc, .content { + background-color: #000000 !important; } - .VPHome .VPHero { - background-color: #ffffff !important; + /* Navigation and sidebar backgrounds - pure black */ + .VPNav, .VPSidebar, .VPLocalNav { + background-color: #000000 !important; } + /* Footer - pure black */ + .VPFooter { + background-color: #000000 !important; + } + + /* EXCLUDE buttons and interactive elements from black background */ + button, + .VPButton, + .vp-button, + input[type="button"], + input[type="submit"], + .copy-button, + .nav-link, + .sidebar-link, + .pager-link, + .edit-link, + .outline-link, + .search-button, + [role="button"] { + background-color: initial !important; + } + + /* Dark mode - same rules */ .dark html, .dark body { - background-color: rgb(26, 26, 26) !important; + background-color: #000000 !important; } - .dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app, .dark .vp-doc { - background-color: rgb(26, 26, 26) !important; + .dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app { + background-color: #000000 !important; } - .dark .VPHome { - background-color: rgb(26, 26, 26) !important; + .dark .vp-doc, .dark .VPDoc, .dark .content { + background-color: #000000 !important; } - .dark .VPHome .VPHero { - background-color: rgb(26, 26, 26) !important; + .dark .VPNav, .dark .VPSidebar, .dark .VPLocalNav { + background-color: #000000 !important; + } + + .dark .VPFooter { + background-color: #000000 !important; + } + + /* EXCLUDE buttons in dark mode too */ + .dark button, + .dark .VPButton, + .dark .vp-button, + .dark input[type="button"], + .dark input[type="submit"], + .dark .copy-button, + .dark .nav-link, + .dark .sidebar-link, + .dark .pager-link, + .dark .edit-link, + .dark .outline-link, + .dark .search-button, + .dark [role="button"] { + background-color: initial !important; } ` } @@ -196,4 +244,6 @@ const normalizeColorName = (colorName: string) => Selected: {{ normalizeColorName(selectedColor) }} + + From 82dba0e7fd619824a1a92be526bdbcec9c6bc978 Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:10:55 +0530 Subject: [PATCH 09/10] Fix template closing tags in ColorPicker.vue --- docs/.vitepress/theme/components/ColorPicker.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/.vitepress/theme/components/ColorPicker.vue b/docs/.vitepress/theme/components/ColorPicker.vue index 4c4460025..d2adef1c5 100644 --- a/docs/.vitepress/theme/components/ColorPicker.vue +++ b/docs/.vitepress/theme/components/ColorPicker.vue @@ -244,6 +244,4 @@ const normalizeColorName = (colorName: string) => Selected: {{ normalizeColorName(selectedColor) }} - - - + From 7fb6189a0e279d48d8a19b2d644a49512a22209b Mon Sep 17 00:00:00 2001 From: Land <84073086+LandWarderer2772@users.noreply.github.com> Date: Wed, 29 Oct 2025 16:06:30 +0530 Subject: [PATCH 10/10] Add files via upload --- docs/public/google7413aa30c9633fb8.html | 1 + 1 file changed, 1 insertion(+) create mode 100644 docs/public/google7413aa30c9633fb8.html diff --git a/docs/public/google7413aa30c9633fb8.html b/docs/public/google7413aa30c9633fb8.html new file mode 100644 index 000000000..e2b559caf --- /dev/null +++ b/docs/public/google7413aa30c9633fb8.html @@ -0,0 +1 @@ +google-site-verification: google7413aa30c9633fb8.html \ No newline at end of file