summaryrefslogtreecommitdiffhomepage
path: root/desktop
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-30 11:27:28 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commitecf08eda5124c0d45fa4642345daddeff68e8a99 (patch)
treeb3871641e7352ac974283f015cc1a3733a25108c /desktop
parent95510c5d4f5e5036e2429b3ce4d53936ca626e24 (diff)
downloadmullvadvpn-ecf08eda5124c0d45fa4642345daddeff68e8a99.tar.xz
mullvadvpn-ecf08eda5124c0d45fa4642345daddeff68e8a99.zip
Use new colors in text styles
Diffstat (limited to 'desktop')
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/common-styles.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/common-styles.ts b/desktop/packages/mullvad-vpn/src/renderer/components/common-styles.ts
index 5d43443305..94827351e7 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/common-styles.ts
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/common-styles.ts
@@ -1,6 +1,6 @@
import React from 'react';
-import { DeprecatedColors, spacings } from '../lib/foundations';
+import { colors, spacings } from '../lib/foundations';
export const openSans: React.CSSProperties = {
fontFamily: 'Open Sans',
@@ -22,7 +22,7 @@ export const smallText = {
fontSize: '14px',
fontWeight: 600,
lineHeight: '20px',
- color: DeprecatedColors.white80,
+ color: colors.white80,
};
export const smallNormalText = {
@@ -45,7 +45,7 @@ export const largeText = {
export const buttonText = {
...largeText,
- color: DeprecatedColors.white,
+ color: colors.white100,
};
export const bigText = {
@@ -60,7 +60,7 @@ export const hugeText = {
fontSize: '32px',
fontWeight: 700,
lineHeight: '34px',
- color: DeprecatedColors.white,
+ color: colors.white100,
};
export const measurements = {