fix rebase error

This commit is contained in:
K Simmons 2022-09-21 16:35:24 -07:00
parent 79b9420017
commit 593c7a8cd1

View file

@ -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),
}
}