summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 11:22:45 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit4ca0a0719cfda8024b55ab8088b8044519015e83 (patch)
treed0e2034e29e06a3722afe15a18ba196a940b365e
parent144d26f2e01f9fb01a994eb5cddb88d5ab1974b1 (diff)
downloadmullvadvpn-4ca0a0719cfda8024b55ab8088b8044519015e83.tar.xz
mullvadvpn-4ca0a0719cfda8024b55ab8088b8044519015e83.zip
Use new colors in layout components
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/Layout.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/Layout.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/Layout.tsx
index 21b404b2d8..67e7963eae 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/Layout.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/Layout.tsx
@@ -1,7 +1,7 @@
import styled from 'styled-components';
import { Flex } from '../lib/components';
-import { DeprecatedColors, spacings } from '../lib/foundations';
+import { colors, spacings } from '../lib/foundations';
import { measurements } from './common-styles';
import { NavigationScrollbars } from './NavigationScrollbars';
@@ -9,7 +9,7 @@ export const Container = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
- backgroundColor: DeprecatedColors.blue,
+ backgroundColor: colors.brandBlue,
overflow: 'hidden',
});
@@ -22,7 +22,7 @@ export const Layout = styled.div({
});
export const SettingsContainer = styled(Container)({
- backgroundColor: DeprecatedColors.darkBlue,
+ backgroundColor: colors.brandDarkBlue,
});
export const SettingsNavigationScrollbars = styled(NavigationScrollbars)({