[PR #216] [CLOSED] Dark mode fix #4019

Closed
opened 2026-03-23 21:35:56 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/216
Author: @rileyhawk1417
Created: 1/6/2022
Status: Closed

Base: mainHead: dark_mode_fix


📝 Commits (10+)

  • 52c0431 Rewrote to change with light and dark mode 🔧
  • aaf3b1d Changed files to match theme switches
  • 012c9f0 Fixed text color switch
  • 2e0e31f Configured accent color for trash page
  • 95dae93 Configured hover color for dark mode
  • d306fc4 Configured container colors for dark mode
  • 86eceee Configured text to switch with themes
  • b3de6ec Pulled from the main branch
  • ae06165 Rewrote to change with light and dark mode 🔧
  • d90602f Changed files to match theme switches

📊 Changes

73 files changed (+2884 additions, -108 deletions)

View changed files

📝 backend/src/application.rs (+3 -0)
📝 backend/src/context.rs (+14 -0)
📝 backend/src/services/core/app/persistence.rs (+4 -0)
📝 backend/src/services/core/app/router.rs (+12 -0)
📝 backend/src/services/core/view/controller.rs (+14 -0)
📝 backend/src/services/core/view/persistence.rs (+8 -0)
📝 backend/src/services/core/view/router.rs (+20 -0)
📝 backend/src/services/core/workspace/controller.rs (+8 -0)
📝 backend/src/services/core/workspace/persistence.rs (+4 -0)
📝 backend/src/services/core/workspace/router.rs (+12 -0)
📝 backend/src/services/document/persistence.rs (+76 -0)
📝 backend/src/services/document/router.rs (+21 -0)
📝 backend/src/services/document/ws_actor.rs (+34 -0)
📝 backend/src/services/document/ws_receiver.rs (+76 -0)
📝 backend/tests/document_test/edit_script.rs (+62 -0)
📝 backend/tests/document_test/edit_test.rs (+78 -82)
📝 backend/tests/util/helper.rs (+9 -0)
frontend/app_flowy/assets/images/flowy_logo_dark_mode.svg (+112 -0)
📝 frontend/app_flowy/lib/workspace/presentation/home/navigation.dart (+3 -1)
📝 frontend/app_flowy/lib/workspace/presentation/stack_page/trash/trash_page.dart (+2 -2)

...and 53 more files

📄 Description

Dark Mode

Managed to fix the icons and text for dark mode.


🔄 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/AppFlowy-IO/AppFlowy/pull/216 **Author:** [@rileyhawk1417](https://github.com/rileyhawk1417) **Created:** 1/6/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dark_mode_fix` --- ### 📝 Commits (10+) - [`52c0431`](https://github.com/AppFlowy-IO/AppFlowy/commit/52c04310bab65098236891b9ca9488a63da6598e) Rewrote to change with light and dark mode 🔧 - [`aaf3b1d`](https://github.com/AppFlowy-IO/AppFlowy/commit/aaf3b1dcbe0526ce42c852e38b754ebc3752569e) Changed files to match theme switches - [`012c9f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/012c9f05c55248efcd5484ffba35572904c7bde8) Fixed text color switch - [`2e0e31f`](https://github.com/AppFlowy-IO/AppFlowy/commit/2e0e31f1a3e97f2b19e23515530fed649712b0e7) Configured accent color for trash page - [`95dae93`](https://github.com/AppFlowy-IO/AppFlowy/commit/95dae9335f3b9fce821d714d6439477d66171d0b) Configured hover color for dark mode - [`d306fc4`](https://github.com/AppFlowy-IO/AppFlowy/commit/d306fc4d95af57cac9ae5d41035dac10ec1f6bd8) Configured container colors for dark mode - [`86eceee`](https://github.com/AppFlowy-IO/AppFlowy/commit/86eceeee99c79a865bdda870d123dfa8822458e2) Configured text to switch with themes - [`b3de6ec`](https://github.com/AppFlowy-IO/AppFlowy/commit/b3de6ec512834c6c6a57e771e31c15c50933cb1d) Pulled from the main branch - [`ae06165`](https://github.com/AppFlowy-IO/AppFlowy/commit/ae06165b0919688fc4191e4569c6f00e791d33a3) Rewrote to change with light and dark mode 🔧 - [`d90602f`](https://github.com/AppFlowy-IO/AppFlowy/commit/d90602ffae27bfbce1a06af32195d05e28d7d597) Changed files to match theme switches ### 📊 Changes **73 files changed** (+2884 additions, -108 deletions) <details> <summary>View changed files</summary> 📝 `backend/src/application.rs` (+3 -0) 📝 `backend/src/context.rs` (+14 -0) 📝 `backend/src/services/core/app/persistence.rs` (+4 -0) 📝 `backend/src/services/core/app/router.rs` (+12 -0) 📝 `backend/src/services/core/view/controller.rs` (+14 -0) 📝 `backend/src/services/core/view/persistence.rs` (+8 -0) 📝 `backend/src/services/core/view/router.rs` (+20 -0) 📝 `backend/src/services/core/workspace/controller.rs` (+8 -0) 📝 `backend/src/services/core/workspace/persistence.rs` (+4 -0) 📝 `backend/src/services/core/workspace/router.rs` (+12 -0) 📝 `backend/src/services/document/persistence.rs` (+76 -0) 📝 `backend/src/services/document/router.rs` (+21 -0) 📝 `backend/src/services/document/ws_actor.rs` (+34 -0) 📝 `backend/src/services/document/ws_receiver.rs` (+76 -0) 📝 `backend/tests/document_test/edit_script.rs` (+62 -0) 📝 `backend/tests/document_test/edit_test.rs` (+78 -82) 📝 `backend/tests/util/helper.rs` (+9 -0) ➕ `frontend/app_flowy/assets/images/flowy_logo_dark_mode.svg` (+112 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/home/navigation.dart` (+3 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/stack_page/trash/trash_page.dart` (+2 -2) _...and 53 more files_ </details> ### 📄 Description ## Dark Mode Managed to fix the icons and text for dark mode. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:35:56 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4019
No description provided.