summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 10:15:50 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit9f075db52241b2b35448807c962dcdb0e7d97e1e (patch)
tree711edafdf397abd6c4654292cac8d7018def0cb8
parent8011d2fb3f9605b857476f09319938d9c44853af (diff)
downloadmullvadvpn-9f075db52241b2b35448807c962dcdb0e7d97e1e.tar.xz
mullvadvpn-9f075db52241b2b35448807c962dcdb0e7d97e1e.zip
Use new colors in account view
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/AccountStyles.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/AccountStyles.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/AccountStyles.tsx
index 7426269686..5a60b716cb 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/AccountStyles.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/AccountStyles.tsx
@@ -1,6 +1,6 @@
import styled from 'styled-components';
-import { DeprecatedColors } from '../lib/foundations';
+import { colors } from '../lib/foundations';
import { measurements, normalText, tinyText } from './common-styles';
export const AccountContainer = styled.div({
@@ -28,12 +28,12 @@ const AccountRowText = styled.span({
export const AccountRowLabel = styled(AccountRowText)(tinyText, {
lineHeight: '20px',
marginBottom: '5px',
- color: DeprecatedColors.white60,
+ color: colors.white60,
});
export const AccountRowValue = styled(AccountRowText)(normalText, {
fontWeight: 600,
- color: DeprecatedColors.white,
+ color: colors.white100,
});
export const DeviceRowValue = styled(AccountRowValue)({
@@ -41,7 +41,7 @@ export const DeviceRowValue = styled(AccountRowValue)({
});
export const AccountOutOfTime = styled(AccountRowValue)({
- color: DeprecatedColors.red,
+ color: colors.brandRed,
});
export const StyledDeviceNameRow = styled.div({