summaryrefslogtreecommitdiffhomepage
path: root/desktop
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 10:22:48 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit228f255ff182392f0cef2798e4134e14d57c0dec (patch)
treeedd65237c0cbfb8fecd9122fa42332f0a017df45 /desktop
parentcca0e34700faf3a15d25978bac2e6fc21d6b7418 (diff)
downloadmullvadvpn-228f255ff182392f0cef2798e4134e14d57c0dec.tar.xz
mullvadvpn-228f255ff182392f0cef2798e4134e14d57c0dec.zip
Use new colors in custom dns settings view
Diffstat (limited to 'desktop')
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx
index 9ed0ce1397..5b3ad153c7 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx
@@ -1,6 +1,6 @@
import styled from 'styled-components';
-import { DeprecatedColors } from '../lib/foundations';
+import { colors } from '../lib/foundations';
import * as Cell from './cell';
export const StyledCustomDnsFooter = styled(Cell.CellFooter)({
@@ -20,17 +20,17 @@ export const StyledAddCustomDnsLabel = styled(Cell.Label)<{ $paddingLeft?: numbe
export const StyledItemContainer = styled(Cell.Container)({
display: 'flex',
- backgroundColor: DeprecatedColors.blue40,
+ backgroundColor: colors.blue40,
'&&:hover': {
- backgroundColor: DeprecatedColors.blue80,
+ backgroundColor: colors.blue80,
},
});
export const AddServerContainer = styled(Cell.Container)({
display: 'flex',
- backgroundColor: DeprecatedColors.blue20,
+ backgroundColor: colors.blue20,
'&&:hover': {
- backgroundColor: DeprecatedColors.blue60,
+ backgroundColor: colors.blue60,
},
});