From ef8624e87cef1b03ff38d70153539828ea1dcc11 Mon Sep 17 00:00:00 2001 From: appflowy Date: Fri, 28 Jan 2022 21:32:45 +0800 Subject: [PATCH] update dark mode bg3 color --- .../presentation/widgets/menu/widget/app/section/item.dart | 2 +- frontend/app_flowy/packages/flowy_infra/lib/theme.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/item.dart b/frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/item.dart index ffc82ed823..cec56381f3 100644 --- a/frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/item.dart +++ b/frontend/app_flowy/lib/workspace/presentation/widgets/menu/widget/app/section/item.dart @@ -43,7 +43,7 @@ class ViewSectionItem extends StatelessWidget { return InkWell( onTap: () => onSelected(context.read().state.view), child: FlowyHover( - config: HoverDisplayConfig(hoverColor: theme.bg2), + config: HoverDisplayConfig(hoverColor: theme.bg3), builder: (_, onHover) => _render(context, onHover, state, theme.iconColor), isOnSelected: () => state.isEditing || isSelected, ), diff --git a/frontend/app_flowy/packages/flowy_infra/lib/theme.dart b/frontend/app_flowy/packages/flowy_infra/lib/theme.dart index 97f65e9e4b..476f43d301 100644 --- a/frontend/app_flowy/packages/flowy_infra/lib/theme.dart +++ b/frontend/app_flowy/packages/flowy_infra/lib/theme.dart @@ -129,7 +129,7 @@ class AppTheme { ..shader7 = _black ..bg1 = _black ..bg2 = _black - ..bg3 = _grey + ..bg3 = const Color(0xff4f4f4f) ..bg4 = const Color(0xff2c144b) ..tint1 = const Color(0xffc3adff) ..tint2 = const Color(0xffffadf9)