summaryrefslogtreecommitdiffhomepage
path: root/desktop
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 11:20:16 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commitf39e6d5dc1c49b878272a63fcceb50ec4e84ff79 (patch)
tree04804a16fcab13054e052f10e2c489e7219bc803 /desktop
parent8cabf27f85cdcfcec757a9b9f414e9c80a187b6c (diff)
downloadmullvadvpn-f39e6d5dc1c49b878272a63fcceb50ec4e84ff79.tar.xz
mullvadvpn-f39e6d5dc1c49b878272a63fcceb50ec4e84ff79.zip
Use new colors in Filter
Diffstat (limited to 'desktop')
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/Filter.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/Filter.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/Filter.tsx
index 07911fdbc2..ff05d43510 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/Filter.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/Filter.tsx
@@ -10,7 +10,7 @@ import {
filterLocations,
filterLocationsByEndPointType,
} from '../lib/filter-locations';
-import { DeprecatedColors } from '../lib/foundations';
+import { colors } from '../lib/foundations';
import { useHistory } from '../lib/history';
import { useNormalRelaySettings, useTunnelProtocol } from '../lib/relay-settings-hooks';
import { useBoolean } from '../lib/utility-hooks';
@@ -28,7 +28,7 @@ import { NavigationContainer } from './NavigationContainer';
import { NavigationScrollbars } from './NavigationScrollbars';
const StyledNavigationScrollbars = styled(NavigationScrollbars)({
- backgroundColor: DeprecatedColors.darkBlue,
+ backgroundColor: colors.brandDarkBlue,
flex: 1,
});
@@ -310,20 +310,20 @@ const StyledCheckbox = styled.div({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
- backgroundColor: DeprecatedColors.white,
+ backgroundColor: colors.white100,
borderRadius: '4px',
});
const StyledRow = styled(Cell.Row)({
- backgroundColor: DeprecatedColors.blue40,
+ backgroundColor: colors.blue40,
'&&:hover': {
- backgroundColor: DeprecatedColors.blue80,
+ backgroundColor: colors.blue80,
},
});
const StyledRowTitle = styled.label<IStyledRowTitleProps>(normalText, (props) => ({
fontWeight: props.$bold ? 600 : 400,
- color: DeprecatedColors.white,
+ color: colors.white100,
marginLeft: '22px',
}));