summaryrefslogtreecommitdiffhomepage
path: root/desktop
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 09:48:20 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit257dbe4027ccbf4be7b6626f5bc1911dbffd0e6b (patch)
treec1d464b22cd4b1e610b9e4a068ce78351b4d4fdf /desktop
parent13aafc9de52195c812fbc468e1cb2d638f1b9e0c (diff)
downloadmullvadvpn-257dbe4027ccbf4be7b6626f5bc1911dbffd0e6b.tar.xz
mullvadvpn-257dbe4027ccbf4be7b6626f5bc1911dbffd0e6b.zip
Use new colors in FilterChip
Diffstat (limited to 'desktop')
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/lib/components/filter-chip/FilterChip.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/lib/components/filter-chip/FilterChip.tsx b/desktop/packages/mullvad-vpn/src/renderer/lib/components/filter-chip/FilterChip.tsx
index 666dc6a5f3..c773c797a4 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/lib/components/filter-chip/FilterChip.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/lib/components/filter-chip/FilterChip.tsx
@@ -1,7 +1,7 @@
import { forwardRef } from 'react';
import styled, { WebTarget } from 'styled-components';
-import { DeprecatedColors, Radius } from '../../foundations';
+import { colors, Radius } from '../../foundations';
import { buttonReset } from '../../styles';
import { Flex } from '../flex';
import { FilterChipIcon, FilterChipText } from './components';
@@ -12,9 +12,9 @@ export interface FilterChipProps extends React.ButtonHTMLAttributes<HTMLButtonEl
}
const variables = {
- background: DeprecatedColors.blue,
- hover: DeprecatedColors.blue60,
- disabled: DeprecatedColors.blue50,
+ background: colors.brandBlue,
+ hover: colors.blue60,
+ disabled: colors.blue50,
} as const;
const StyledButton = styled.button({
@@ -34,7 +34,7 @@ const StyledButton = styled.button({
background: 'var(--disabled)',
},
'&:focus-visible': {
- outline: `2px solid ${DeprecatedColors.white}`,
+ outline: `2px solid ${colors.white100}`,
},
});