fix rebase error

K Simmons created

Change summary

styles/src/styleTree/contactsPopover.ts | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

styles/src/styleTree/contactsPopover.ts 🔗

@@ -1,8 +1,8 @@
-import Theme from "../themes/common/theme";
-import { backgroundColor } from "./components";
+import { ColorScheme } from "../themes/common/colorScheme";
+import { background } from "./components";
 
-export default function workspace(theme: Theme) {
+export default function workspace(colorScheme: ColorScheme) {
   return {
-    background: backgroundColor(theme, 300),
+    background: background(colorScheme.lowest.middle),
   }
 }