fix: replace hardcoded yellow text color with theme brand color (#6538)

This commit is contained in:
gopu-bruno
2025-12-29 17:41:30 +05:30
committed by GitHub
parent 1b57b6bee6
commit 018f39239f
6 changed files with 4 additions and 6 deletions

View File

@@ -37,7 +37,6 @@ const Wrapper = styled.div`
.auth-type-label {
width: fit-content;
color: ${(props) => props.theme.colors.text.yellow};
justify-content: space-between;
padding: 0 0.5rem;
}

View File

@@ -7,7 +7,7 @@ const Wrapper = styled.div`
background: transparent;
.auth-mode-label {
color: ${(props) => props.theme.colors.text.yellow};
color: ${(props) => props.theme.brand};
.caret {
color: rgb(140, 140, 140);

View File

@@ -7,7 +7,7 @@ const StyledWrapper = styled.div`
background: transparent;
.auth-mode-label {
color: ${(props) => props.theme.colors.text.yellow};
color: ${(props) => props.theme.brand};
.caret {
color: rgb(140, 140, 140);

View File

@@ -38,7 +38,6 @@ const Wrapper = styled.div`
.auth-type-label {
width: fit-content;
color: ${(props) => props.theme.colors.text.yellow};
justify-content: space-between;
padding: 0 0.5rem;
}

View File

@@ -7,7 +7,7 @@ const Wrapper = styled.div`
background: transparent;
.auth-mode-label {
color: ${(props) => props.theme.colors.text.yellow};
color: ${(props) => props.theme.brand};
.caret {
color: rgb(140, 140, 140);

View File

@@ -28,7 +28,7 @@ const Wrapper = styled.div`
.grant-type-label {
width: fit-content;
color: ${(props) => props.theme.colors.text.yellow};
color: ${(props) => props.theme.brand};
justify-content: space-between;
padding: 0 0.5rem;
}