diff --git a/lib/pages_desktop_specific/home/desktop_menu.dart b/lib/pages_desktop_specific/home/desktop_menu.dart index bdaa1d6ce..60a424a06 100644 --- a/lib/pages_desktop_specific/home/desktop_menu.dart +++ b/lib/pages_desktop_specific/home/desktop_menu.dart @@ -104,10 +104,10 @@ class _DesktopMenuState extends ConsumerState { .state ? Theme.of(context) .extension()! - .textDark + .accentColorDark : Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "My Stack", @@ -120,29 +120,33 @@ class _DesktopMenuState extends ConsumerState { const SizedBox( height: 2, ), - // DesktopMenuItem( - // icon: SvgPicture.asset( - // Assets.svg.exchangeDesktop, - // width: 20, - // height: 20, - // color: DesktopMenuItemId.exchange == ref.watch(currentDesktopMenuItemProvider.state).state - // ? Theme.of(context) - // .extension()! - // .textDark - // : Theme.of(context) - // .extension()! - // .textDark - // .withOpacity(0.8), - // ), - // label: "Exchange", - // value: DesktopMenuItemId.exchange, - // group: ref.watch(currentDesktopMenuItemProvider.state).state, - // onChanged: updateSelectedMenuItem, - // iconOnly: _width == minimizedWidth, - // ), - // const SizedBox( - // height: 2, - // ), + DesktopMenuItem( + icon: SvgPicture.asset( + Assets.svg.exchangeDesktop, + width: 20, + height: 20, + color: DesktopMenuItemId.exchange == + ref + .watch(currentDesktopMenuItemProvider.state) + .state + ? Theme.of(context) + .extension()! + .accentColorDark + : Theme.of(context) + .extension()! + .accentColorDark + .withOpacity(0.8), + ), + label: "Exchange", + value: DesktopMenuItemId.exchange, + group: + ref.watch(currentDesktopMenuItemProvider.state).state, + onChanged: updateSelectedMenuItem, + iconOnly: _width == minimizedWidth, + ), + const SizedBox( + height: 2, + ), DesktopMenuItem( icon: SvgPicture.asset( Assets.svg.bell, @@ -154,10 +158,10 @@ class _DesktopMenuState extends ConsumerState { .state ? Theme.of(context) .extension()! - .textDark + .accentColorDark : Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "Notifications", @@ -181,10 +185,10 @@ class _DesktopMenuState extends ConsumerState { .state ? Theme.of(context) .extension()! - .textDark + .accentColorDark : Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "Address Book", @@ -208,10 +212,10 @@ class _DesktopMenuState extends ConsumerState { .state ? Theme.of(context) .extension()! - .textDark + .accentColorDark : Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "Settings", @@ -235,10 +239,10 @@ class _DesktopMenuState extends ConsumerState { .state ? Theme.of(context) .extension()! - .textDark + .accentColorDark : Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "Support", @@ -262,10 +266,10 @@ class _DesktopMenuState extends ConsumerState { .state ? Theme.of(context) .extension()! - .textDark + .accentColorDark : Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "About", @@ -283,7 +287,7 @@ class _DesktopMenuState extends ConsumerState { height: 20, color: Theme.of(context) .extension()! - .textDark + .accentColorDark .withOpacity(0.8), ), label: "Exit", diff --git a/lib/utilities/theme/ocean_breeze_colors.dart b/lib/utilities/theme/ocean_breeze_colors.dart index ff2f4e85e..1eb06e068 100644 --- a/lib/utilities/theme/ocean_breeze_colors.dart +++ b/lib/utilities/theme/ocean_breeze_colors.dart @@ -21,7 +21,7 @@ class OceanBreezeColors extends StackColorTheme { @override Color get accentColorOrange => const Color(0xFFFF985F); @override - Color get accentColorDark => const Color(0xFF232323); + Color get accentColorDark => const Color(0xFF227386); @override Color get shadow => const Color(0xFF388192);