From a0a9465c0be98bed4066681e240a48af17cde99d Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Wed, 18 Oct 2023 04:15:05 -0700 Subject: [PATCH] Fix dark theme support Reviewed By: lblasa Differential Revision: D50406262 fbshipit-source-id: eda5c73efcd50dbe572cab078d3c04a4cd845601 --- .../flipper-plugin/src/ui/PowerSearch/PowerSearchContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/flipper-plugin/src/ui/PowerSearch/PowerSearchContainer.tsx b/desktop/flipper-plugin/src/ui/PowerSearch/PowerSearchContainer.tsx index 8645cc38e..3d67666bb 100644 --- a/desktop/flipper-plugin/src/ui/PowerSearch/PowerSearchContainer.tsx +++ b/desktop/flipper-plugin/src/ui/PowerSearch/PowerSearchContainer.tsx @@ -13,7 +13,7 @@ import {theme} from '../theme'; const containerStyle = css` flex: 1 0 auto; - background-color: ${theme.white}; + background-color: ${theme.backgroundDefault}; display: flex; flex-direction: row; border-radius: ${theme.borderRadius};