Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs-9205: change appearance prop color from red to purple #1536

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions docs/customization/variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ In the following example, the primary color is set to red and the text color is
<ClerkProvider
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the biggest offender here was the colorText usage, which hides all of the text in the card.
Screenshot 2024-09-13 at 2 47 24 PM

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will open a new PR!

},
}}
Expand All @@ -178,7 +178,7 @@ In the following example, the primary color is set to red and the text color is
<ClerkProvider
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
}}
Expand Down Expand Up @@ -209,7 +209,7 @@ In the following example, the primary color is set to red and the text color is
<ClerkProvider
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
}}
Expand Down Expand Up @@ -308,7 +308,7 @@ In the following example, the primary color is set to red and the text color is
appearance={{
signIn: {
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
},
Expand All @@ -332,7 +332,7 @@ In the following example, the primary color is set to red and the text color is
appearance={{
signIn: {
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
},
Expand Down Expand Up @@ -365,7 +365,7 @@ In the following example, the primary color is set to red and the text color is
appearance={{
signIn: {
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
},
Expand Down Expand Up @@ -468,7 +468,7 @@ The following example shows how to customize the [`<SignIn />`](/docs/components
<SignIn
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
}}
Expand All @@ -484,7 +484,7 @@ The following example shows how to customize the [`<SignIn />`](/docs/components
<SignIn
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
}}
Expand All @@ -504,7 +504,7 @@ The following example shows how to customize the [`<SignIn />`](/docs/components
<SignIn
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
}}
Expand All @@ -527,7 +527,7 @@ The following example shows how to customize the [`<SignIn />`](/docs/components
<SignIn
appearance={{
variables: {
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
},
}}
Expand All @@ -547,7 +547,7 @@ The following example shows how to customize the [`<SignIn />`](/docs/components
<SignIn
path="/sign-in"
appearance={{
colorPrimary: 'red',
colorPrimary: 'purple',
colorText: 'white',
}}
/>
Expand Down
Loading