summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 11:21:51 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit144d26f2e01f9fb01a994eb5cddb88d5ab1974b1 (patch)
treebec4f58aea1b9c2a8ead68481a74f160cdfbe0ee
parentf39e6d5dc1c49b878272a63fcceb50ec4e84ff79 (diff)
downloadmullvadvpn-144d26f2e01f9fb01a994eb5cddb88d5ab1974b1.tar.xz
mullvadvpn-144d26f2e01f9fb01a994eb5cddb88d5ab1974b1.zip
Use new colors in launch view
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/Launch.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/Launch.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/Launch.tsx
index 767edb2115..0eb1442242 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/Launch.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/Launch.tsx
@@ -4,7 +4,7 @@ import styled from 'styled-components';
import { messages } from '../../shared/gettext';
import { useAppContext } from '../context';
import { Button } from '../lib/components';
-import { DeprecatedColors } from '../lib/foundations';
+import { colors } from '../lib/foundations';
import { TransitionType, useHistory } from '../lib/history';
import { RoutePath } from '../lib/routes';
import { useBoolean } from '../lib/utility-hooks';
@@ -26,7 +26,7 @@ export default function Launch() {
}
const StyledFooter = styled(Footer)({
- backgroundColor: DeprecatedColors.blue,
+ backgroundColor: colors.brandBlue,
transition: 'opacity 250ms ease-in-out',
});
@@ -34,14 +34,14 @@ const StyledFooterInner = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
- backgroundColor: DeprecatedColors.darkBlue,
+ backgroundColor: colors.brandDarkBlue,
borderRadius: '8px',
margin: 0,
padding: '16px',
});
const StyledFooterMessage = styled.span(tinyText, {
- color: DeprecatedColors.white,
+ color: colors.white100,
margin: `8px 0 ${measurements.buttonVerticalMargin} 0`,
});