[PR #7] [MERGED] feat: dark mode #115

Closed
opened 2025-10-09 16:51:57 -05:00 by giteasync · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/VERT-sh/VERT/pull/7
Author: @not-nullptr
Created: 11/13/2024
Status: Merged
Merged: 11/13/2024
Merged by: @not-nullptr

Base: mainHead: nullptr/dark-mode


📝 Commits (5)

  • 6c955e3 feat: basic dark mode
  • 6bb9205 feat: theme toggle
  • 3fa2650 Completed dark mode and about page changes
  • 0888cc1 Fix progressive blur on dark mode
  • 5e47cdb feat: dynadark tailwind plugin for dark detection

📊 Changes

15 files changed (+213 additions, -32 deletions)

View changed files

.vscode/settings.json (+3 -0)
.vscode/tailwind.json (+55 -0)
📝 package.json (+2 -0)
📝 src/app.html (+1 -1)
📝 src/app.scss (+47 -11)
src/hooks.server.ts (+9 -0)
📝 src/lib/components/functional/FancyMenu.svelte (+2 -2)
📝 src/lib/store/index.svelte.ts (+9 -0)
📝 src/routes/+layout.svelte (+28 -3)
src/routes/+layout.ts (+16 -0)
📝 src/routes/+page.svelte (+4 -2)
📝 src/routes/about/+page.svelte (+20 -10)
📝 src/routes/convert/+page.svelte (+1 -1)
📝 tailwind.config.ts (+9 -2)
📝 vite.config.ts (+7 -0)

📄 Description

this PR adds dark mode. for future reference, to detect dark mode from tailwind, use dynadark: instead of dark:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/VERT-sh/VERT/pull/7 **Author:** [@not-nullptr](https://github.com/not-nullptr) **Created:** 11/13/2024 **Status:** ✅ Merged **Merged:** 11/13/2024 **Merged by:** [@not-nullptr](https://github.com/not-nullptr) **Base:** `main` ← **Head:** `nullptr/dark-mode` --- ### 📝 Commits (5) - [`6c955e3`](https://github.com/VERT-sh/VERT/commit/6c955e33e3196d667c2017e41bcabe4c989ed3f1) feat: basic dark mode - [`6bb9205`](https://github.com/VERT-sh/VERT/commit/6bb920592d9d43fb2c967a5686622af716f60fbd) feat: theme toggle - [`3fa2650`](https://github.com/VERT-sh/VERT/commit/3fa26505b167e40b941d5358e9f3c0484be81399) Completed dark mode and about page changes - [`0888cc1`](https://github.com/VERT-sh/VERT/commit/0888cc1cbf334ab4b1e5af31455dddcac00ac241) Fix progressive blur on dark mode - [`5e47cdb`](https://github.com/VERT-sh/VERT/commit/5e47cdbcf7dddce3eb7e93d6f10c82a6b2ded132) feat: dynadark tailwind plugin for dark detection ### 📊 Changes **15 files changed** (+213 additions, -32 deletions) <details> <summary>View changed files</summary> ➕ `.vscode/settings.json` (+3 -0) ➕ `.vscode/tailwind.json` (+55 -0) 📝 `package.json` (+2 -0) 📝 `src/app.html` (+1 -1) 📝 `src/app.scss` (+47 -11) ➕ `src/hooks.server.ts` (+9 -0) 📝 `src/lib/components/functional/FancyMenu.svelte` (+2 -2) 📝 `src/lib/store/index.svelte.ts` (+9 -0) 📝 `src/routes/+layout.svelte` (+28 -3) ➕ `src/routes/+layout.ts` (+16 -0) 📝 `src/routes/+page.svelte` (+4 -2) 📝 `src/routes/about/+page.svelte` (+20 -10) 📝 `src/routes/convert/+page.svelte` (+1 -1) 📝 `tailwind.config.ts` (+9 -2) 📝 `vite.config.ts` (+7 -0) </details> ### 📄 Description this PR adds dark mode. for future reference, to detect dark mode from tailwind, use `dynadark:` instead of `dark:` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
giteasync added the pull-request label 2025-10-09 16:51:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: VERT-sh/VERT#115