summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 16:40:30 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit031e6436a68e84748b451d496fcf5e79631a1ed6 (patch)
treefff60bccb99da6eff62c9889ed5f275255d7c298
parentc35deb91a93432d9dc11f754fd020bb7fe802afc (diff)
downloadmullvadvpn-031e6436a68e84748b451d496fcf5e79631a1ed6.tar.xz
mullvadvpn-031e6436a68e84748b451d496fcf5e79631a1ed6.zip
Use new colors in YellowLabel
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/YellowLabel.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/YellowLabel.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/YellowLabel.tsx
index b869cd5df6..c0f40167b0 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/YellowLabel.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/YellowLabel.tsx
@@ -1,17 +1,17 @@
import styled from 'styled-components';
-import { DeprecatedColors } from '../lib/foundations';
+import { colors } from '../lib/foundations';
export default styled.span({
display: 'inline-block',
fontFamily: 'Open Sans',
- color: DeprecatedColors.blue,
+ color: colors.brandBlue,
fontSize: '12px',
fontWeight: 800,
lineHeight: '20px',
padding: '1px 8px',
marginLeft: '8px',
- background: DeprecatedColors.yellow,
+ background: colors.brandYellow,
borderRadius: '5px',
textAlign: 'center',
verticalAlign: 'middle',