diff --git a/src/components/SearchResults/MobileFilters.js b/src/components/SearchResults/MobileFilters.js index 15c68fe5f..3f0bd2cec 100644 --- a/src/components/SearchResults/MobileFilters.js +++ b/src/components/SearchResults/MobileFilters.js @@ -18,7 +18,7 @@ const disableBodyScroll = css` `; const Container = styled('div')` - background-color: ${palette.white}; + background-color: var(--background-color-primary); position: fixed; left: 0; top: ${({ topValue }) => topValue}; @@ -37,6 +37,10 @@ const BackButton = styled('div')` cursor: pointer; display: flex; gap: 0 ${theme.size.small}; + + .dark-theme & { + color: ${palette.gray.light1}; + } `; const Label = styled('div')`