summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-04-29 11:44:35 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-19 14:28:48 +0200
commit7f4aa2e5450a5563bbbb39d236efe15fdb3900fa (patch)
tree138615c9c48d4ad89e34e0e147902fdba0c00153
parent525a4057aefa9ef9f8535a637706d74b8ad9c405 (diff)
downloadmullvadvpn-7f4aa2e5450a5563bbbb39d236efe15fdb3900fa.tar.xz
mullvadvpn-7f4aa2e5450a5563bbbb39d236efe15fdb3900fa.zip
Use new colors in problem report view
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/ProblemReportStyles.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/ProblemReportStyles.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/ProblemReportStyles.tsx
index ec65a5d795..95152f68d8 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/ProblemReportStyles.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/ProblemReportStyles.tsx
@@ -1,6 +1,6 @@
import styled from 'styled-components';
-import { DeprecatedColors } from '../lib/foundations';
+import { colors } from '../lib/foundations';
import { hugeText, measurements, smallText } from './common-styles';
export const StyledContentContainer = styled.div({
@@ -37,8 +37,8 @@ const input = {
flex: 1,
borderRadius: '4px',
padding: '14px',
- color: DeprecatedColors.blue,
- backgroundColor: DeprecatedColors.white,
+ color: colors.brandBlue,
+ backgroundColor: colors.white100,
border: 'none',
};
@@ -60,16 +60,16 @@ export const StyledStatusIcon = styled.div({
export const StyledSentMessage = styled.span(smallText, {
overflow: 'visible',
- color: DeprecatedColors.white60,
+ color: colors.white60,
});
export const StyledThanks = styled.span({
- color: DeprecatedColors.green,
+ color: colors.brandGreen,
});
export const StyledEmail = styled.span({
fontWeight: 900,
- color: DeprecatedColors.white,
+ color: colors.white100,
});
export const StyledSendStatus = styled.span(hugeText, {