From 8701d752d8e795feb5bf74c5c3d2018d664cf7a4 Mon Sep 17 00:00:00 2001 From: Sammy Teillet Date: Tue, 18 Apr 2023 17:37:20 +0200 Subject: [PATCH] refactor: use color from theme --- front/src/components/form/Checkbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/form/Checkbox.tsx b/front/src/components/form/Checkbox.tsx index 7fd099e2f..dbd1094b3 100644 --- a/front/src/components/form/Checkbox.tsx +++ b/front/src/components/form/Checkbox.tsx @@ -8,7 +8,7 @@ type OwnProps = { const StyledContainer = styled.span` input[type='checkbox'] { - accent-color: #1111b7; + accent-color: ${(props) => props.theme.purple}; } `;