[PR #249] [CLOSED] Fix dark mode #4021

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

📋 Pull Request Information

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

Base: mainHead: fix_dark_mode


📝 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

36 files changed (+1898 additions, -115 deletions)

View changed files

📝 backend/tests/document_test/edit_test.rs (+78 -82)
frontend/app_flowy/assets/images/flowy_logo_dark_mode.svg (+112 -0)
📝 frontend/app_flowy/lib/workspace/domain/edit_action/app_edit.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/domain/edit_action/view_edit.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/domain/image.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/presentation/stack_page/trash/trash_page.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/presentation/widgets/edit_pannel/edit_pannel.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/header/add_button.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/disclosure_action.dart (+4 -1)
📝 frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/item.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/menu_trash.dart (+3 -1)
📝 frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/top_bar.dart (+7 -2)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java (+39 -0)
frontend/app_flowy/packages/flowy_editor/example/android/local.properties (+1 -0)
frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/Generated.xcconfig (+13 -0)
frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/flutter_export_environment.sh (+13 -0)
frontend/app_flowy/packages/flowy_editor/example/ios/Runner/GeneratedPluginRegistrant.h (+19 -0)
frontend/app_flowy/packages/flowy_editor/example/ios/Runner/GeneratedPluginRegistrant.m (+42 -0)
frontend/app_flowy/packages/flowy_editor/example/lib/generated_plugin_registrant.dart (+20 -0)
📝 frontend/app_flowy/packages/flowy_infra/lib/theme.dart (+15 -15)

...and 16 more files

📄 Description

Fixed some icons and color schemes.


🔄 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/249 **Author:** [@rileyhawk1417](https://github.com/rileyhawk1417) **Created:** 1/8/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix_dark_mode` --- ### 📝 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 **36 files changed** (+1898 additions, -115 deletions) <details> <summary>View changed files</summary> 📝 `backend/tests/document_test/edit_test.rs` (+78 -82) ➕ `frontend/app_flowy/assets/images/flowy_logo_dark_mode.svg` (+112 -0) 📝 `frontend/app_flowy/lib/workspace/domain/edit_action/app_edit.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/domain/edit_action/view_edit.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/domain/image.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/stack_page/trash/trash_page.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/widgets/edit_pannel/edit_pannel.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/header/add_button.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/disclosure_action.dart` (+4 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/item.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/menu_trash.dart` (+3 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/top_bar.dart` (+7 -2) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java` (+39 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/local.properties` (+1 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/Generated.xcconfig` (+13 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/flutter_export_environment.sh` (+13 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/ios/Runner/GeneratedPluginRegistrant.h` (+19 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/ios/Runner/GeneratedPluginRegistrant.m` (+42 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/lib/generated_plugin_registrant.dart` (+20 -0) 📝 `frontend/app_flowy/packages/flowy_infra/lib/theme.dart` (+15 -15) _...and 16 more files_ </details> ### 📄 Description Fixed some icons and color schemes. --- <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:57 +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#4021
No description provided.