[PR #1601] [MERGED] Added : customize the color and background color of selected text #4844

Closed
opened 2026-03-23 22:16:04 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1601
Author: @rizwan3395
Created: 12/21/2022
Status: Merged
Merged: 12/23/2022
Merged by: @LucasXu0

Base: mainHead: main


📝 Commits (8)

📊 Changes

15 files changed (+788 additions, -6 deletions)

View changed files

📝 .github/workflows/appflowy_editor_test.yml (+1 -1)
📝 frontend/app_flowy/assets/translations/en.json (+2 -1)
📝 frontend/app_flowy/assets/translations/es-VE.json (+2 -1)
frontend/app_flowy/packages/appflowy_editor/assets/images/checkmark.svg (+3 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_en.arb (+43 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/core/legacy/built_in_attribute_keys.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/text_node_extensions.dart (+11 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/l10n/intl/messages_en.dart (+31 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/l10n/l10n.dart (+210 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/color_menu/color_picker.dart (+168 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/flowy_rich_text.dart (+5 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart (+244 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/default_text_operations/format_rich_text_style.dart (+16 -0)
📝 frontend/app_flowy/packages/appflowy_editor/test/render/link_menu/link_menu_test.dart (+3 -2)
📝 frontend/app_flowy/packages/appflowy_editor/test/render/rich_text/toolbar_rich_text_test.dart (+48 -0)

📄 Description

No description provided


🔄 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/1601 **Author:** [@rizwan3395](https://github.com/rizwan3395) **Created:** 12/21/2022 **Status:** ✅ Merged **Merged:** 12/23/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (8) - [`81380b2`](https://github.com/AppFlowy-IO/AppFlowy/commit/81380b25e4863832dc744f33a6f0072da52ed665) Added Emoji Support - [`92ec3fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/92ec3fb4ca73b38d58c44b99f2cfc0969c10d4ba) Merge branch 'main' of https://github.com/rizwan3395/AppFlowy - [`878e5f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/878e5f0dd74cfbba224dcf08854c3d594467d68c) Added Color Picker for font color and background color - [`d766805`](https://github.com/AppFlowy-IO/AppFlowy/commit/d7668051f73d6d5a51e136320045b6a4c6407587) Merge remote-tracking branch 'origin/main' into rizwan3395/main - [`b9f3477`](https://github.com/AppFlowy-IO/AppFlowy/commit/b9f3477937c85d184659a2ecca0df7d31d01984a) chore: revert code - [`acb9aa3`](https://github.com/AppFlowy-IO/AppFlowy/commit/acb9aa3ccf19060e8bb397ab845968bb12706c6e) feat: re-implement the color picker - [`4803403`](https://github.com/AppFlowy-IO/AppFlowy/commit/48034031009d4a4cfa9dfb545c107e84b0170bcc) test: add test case for adding color - [`a073859`](https://github.com/AppFlowy-IO/AppFlowy/commit/a0738596b9d6fe2c5f5ad02a1054d0e38e09650f) test: update appflowy_editor test flag ### 📊 Changes **15 files changed** (+788 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/appflowy_editor_test.yml` (+1 -1) 📝 `frontend/app_flowy/assets/translations/en.json` (+2 -1) 📝 `frontend/app_flowy/assets/translations/es-VE.json` (+2 -1) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/checkmark.svg` (+3 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_en.arb` (+43 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/core/legacy/built_in_attribute_keys.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/text_node_extensions.dart` (+11 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/l10n/intl/messages_en.dart` (+31 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/l10n/l10n.dart` (+210 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/color_menu/color_picker.dart` (+168 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/flowy_rich_text.dart` (+5 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart` (+244 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/default_text_operations/format_rich_text_style.dart` (+16 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/test/render/link_menu/link_menu_test.dart` (+3 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/test/render/rich_text/toolbar_rich_text_test.dart` (+48 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:16:04 +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#4844
No description provided.