Skip to content

Commit 33c882f

Browse files
authored
fix(clerk-js): Finalize all text colors (clerk#2761)
* fix(clerk-js): Finalize all text colors Remove colorTextTertiary and colorTextLabel. * fix(clerk-js): Use #131316 as a default value for colorInputText
1 parent 1f6c2fe commit 33c882f

20 files changed

+45
-67
lines changed

.changeset/proud-frogs-confess.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/clerk-js/src/ui/components/CreateOrganization/CreateOrganizationForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export const CreateOrganizationForm = withCardStateProvider((props: CreateOrgani
148148
size='md'
149149
icon={Upload}
150150
sx={t => ({
151-
color: t.colors.$colorTextTertiary,
151+
color: t.colors.$colorTextSecondary,
152152
transitionDuration: t.transitionDuration.$controls,
153153
})}
154154
/>

packages/clerk-js/src/ui/components/OrganizationProfile/MemberListTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export const RoleSelect = (props: {
205205
{prefixLocalizationKey && (
206206
<Text
207207
as='span'
208-
sx={t => ({ color: t.colors.$colorTextTertiary })}
208+
colorScheme='neutral'
209209
localizationKey={prefixLocalizationKey}
210210
/>
211211
)}

packages/clerk-js/src/ui/components/OrganizationProfile/OrganizationGeneralPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const OrganizationDomainsSection = () => {
162162
paddingLeft: t.space.$9,
163163
marginTop: `-${t.space.$1}`,
164164
})}
165-
colorScheme='tertiary'
165+
colorScheme='neutral'
166166
/>
167167
</Col>
168168
</Action.Trigger>

packages/clerk-js/src/ui/components/UserProfile/ConnectedAccountsSection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const ConnectedAccountsSection = withCardStateProvider(() => {
7979
<Text
8080
truncate
8181
as='span'
82-
sx={t => ({ color: t.colors.$colorTextTertiary })}
82+
colorScheme='neutral'
8383
>
8484
{label ? `• ${label}` : ''}
8585
</Text>

packages/clerk-js/src/ui/components/UserProfile/EnterpriseAccountsSection.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ export const EnterpriseAccountsSection = () => {
4545
>
4646
<Text
4747
truncate
48-
sx={t => ({ color: t.colors.$colorText })}
48+
colorScheme='primary'
4949
>
5050
{providerName}
5151
</Text>
5252
<Text
5353
truncate
5454
as='span'
55-
sx={t => ({ color: t.colors.$colorTextTertiary })}
55+
colorScheme='neutral'
5656
>
5757
{label ? `• ${label}` : ''}
5858
</Text>

packages/clerk-js/src/ui/customizables/__tests__/parseAppearance.test.tsx

-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const themeAColor = 'blue';
1111
const themeA = {
1212
variables: {
1313
colorPrimary: themeAColor,
14-
colorSecondary: themeAColor,
1514
colorDanger: themeAColor,
1615
colorSuccess: themeAColor,
1716
colorWarning: themeAColor,
@@ -20,9 +19,7 @@ const themeA = {
2019
colorInputText: themeAColor,
2120
colorText: themeAColor,
2221
colorTextOnPrimaryBackground: themeAColor,
23-
colorTextOnSecondaryBackground: themeAColor,
2422
colorTextSecondary: themeAColor,
25-
colorTextTertiary: themeAColor,
2623
borderRadius: '1rem',
2724
fontFamily: 'Comic Sans',
2825
fontFamilyButtons: 'Comic Sans',
@@ -36,7 +33,6 @@ const themeBColor = 'red';
3633
const themeB = {
3734
variables: {
3835
colorPrimary: themeBColor,
39-
colorSecondary: themeBColor,
4036
colorDanger: themeBColor,
4137
colorSuccess: themeBColor,
4238
colorWarning: themeBColor,
@@ -45,9 +41,7 @@ const themeB = {
4541
colorInputText: themeBColor,
4642
colorText: themeBColor,
4743
colorTextOnPrimaryBackground: themeBColor,
48-
colorTextOnSecondaryBackground: themeBColor,
4944
colorTextSecondary: themeBColor,
50-
colorTextTertiary: themeBColor,
5145
borderRadius: '2rem',
5246
fontFamily: 'Arial',
5347
fontFamilyButtons: 'Arial',

packages/clerk-js/src/ui/customizables/parseVariables.ts

+1-8
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ import {
1313
export const createColorScales = (theme: Theme) => {
1414
const variables = theme.variables || {};
1515

16-
//values dependent on other values
17-
const colorTextSecondary = toHSLA(variables.colorTextSecondary) || colors.makeTransparent(variables.colorText, 0.15);
18-
const colorTextTertiary = toHSLA(variables.colorTextTertiary) || colors.makeTransparent(colorTextSecondary, 0.4);
19-
const colorTextLabel = toHSLA(variables.colorTextLabel) || colors.makeTransparent(variables.colorText, 0.05);
20-
2116
const primaryScale = colorOptionToHslaLightnessScale(variables.colorPrimary, 'primary');
2217
const primaryAlphaScale = colorOptionToHslaAlphaScale(primaryScale?.primary500, 'primaryAlpha');
2318
const dangerScale = colorOptionToHslaLightnessScale(variables.colorDanger, 'danger');
@@ -40,9 +35,7 @@ export const createColorScales = (theme: Theme) => {
4035
primaryHover: colors.adjustForLightness(primaryScale?.primary500),
4136
colorTextOnPrimaryBackground: toHSLA(variables.colorTextOnPrimaryBackground),
4237
colorText: toHSLA(variables.colorText),
43-
colorTextSecondary,
44-
colorTextTertiary,
45-
colorTextLabel,
38+
colorTextSecondary: toHSLA(variables.colorTextSecondary) || colors.makeTransparent(variables.colorText, 0.15),
4639
colorInputText: toHSLA(variables.colorInputText),
4740
colorBackground: toHSLA(variables.colorBackground),
4841
colorInputBackground: toHSLA(variables.colorInputBackground),

packages/clerk-js/src/ui/elements/AvatarUploader.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ export const AvatarUploader = (props: AvatarUploaderProps) => {
118118
)}
119119
</Flex>
120120
<Text
121-
sx={t => ({ color: t.colors.$colorTextTertiary, fontSize: t.fontSizes.$sm })}
121+
colorScheme='neutral'
122+
sx={t => ({ fontSize: t.fontSizes.$sm })}
122123
localizationKey={localizationKeys('userProfile.profilePage.fileDropAreaHint')}
123124
/>
124125
</Col>

packages/clerk-js/src/ui/elements/Card/CardContent.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const CardContent = React.forwardRef<HTMLDivElement, CardContentProps>((p
5151
/>
5252
}
5353
sx={t => ({
54-
color: t.colors.$colorTextTertiary,
54+
color: t.colors.$colorTextSecondary,
5555
zIndex: t.zIndices.$modal,
5656
position: 'absolute',
5757
top: t.space.$none,

packages/clerk-js/src/ui/elements/FieldControl.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const FieldOptionalLabel = () => {
7979
elementId={descriptors.formFieldHintText.setId(fieldId)}
8080
as='span'
8181
variant='caption'
82-
colorScheme='tertiary'
82+
colorScheme='neutral'
8383
isDisabled={isDisabled}
8484
/>
8585
);

packages/clerk-js/src/ui/elements/Pagination.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const shouldShowDots = (currentPage: number, pageToShow: number, siblingCount: n
117117

118118
const ThreeDots = () => (
119119
<Flex center>
120-
<Text sx={t => ({ color: t.colors.$colorTextTertiary })}>...</Text>
120+
<Text colorScheme='neutral'>...</Text>
121121
</Flex>
122122
);
123123

packages/clerk-js/src/ui/elements/PreviewButton.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const PreviewButton = (props: PreviewButtonProps) => {
4545
icon={icon}
4646
sx={[
4747
t => ({
48-
color: t.colors.$colorTextTertiary,
48+
color: t.colors.$colorTextSecondary,
4949
marginLeft: t.space.$2,
5050
visibility: showIconOnHover ? 'hidden' : 'initial',
5151
}),

packages/clerk-js/src/ui/elements/ProfileCard/ProfileCardRoot.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const ProfileCardRoot = React.forwardRef<HTMLDivElement, PropsOfComponent
5858
/>
5959
}
6060
sx={t => ({
61-
color: t.colors.$colorTextTertiary,
61+
color: t.colors.$colorTextSecondary,
6262
padding: t.space.$3,
6363
})}
6464
/>

packages/clerk-js/src/ui/elements/TagInput.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export const TagInput = (props: TagInputProps) => {
164164
lineHeight: t.space.$5,
165165
paddingLeft: t.space.$1,
166166
'::placeholder': {
167-
color: t.colors.$colorTextTertiary,
167+
color: t.colors.$colorTextSecondary,
168168
},
169169
boxShadow: 'none',
170170
':hover': {
@@ -217,7 +217,7 @@ const TagPill = (props: TagPillProps) => {
217217
elementDescriptor={descriptors.tagPillIcon}
218218
size='md'
219219
icon={Plus}
220-
sx={t => ({ color: t.colors.$colorTextTertiary, transform: 'translateY(0px) rotate(45deg)' })}
220+
sx={t => ({ color: t.colors.$colorTextSecondary, transform: 'translateY(0px) rotate(45deg)' })}
221221
/>
222222
</Flex>
223223
);

packages/clerk-js/src/ui/foundations/colors.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,19 @@ export const neutralAlpha = Object.freeze({
3737
} as const);
3838

3939
export const colors = Object.freeze({
40-
// Colors that are not affected by `alphaShadesMode`
4140
avatarBorder: neutralAlpha.neutralAlpha200,
4241
avatarBackground: neutralAlpha.neutralAlpha400,
4342
modalBackdrop: neutralAlpha.neutralAlpha700,
44-
activeDeviceBackground: whiteAlpha.whiteAlpha200,
4543
// Themable colors
4644
...neutralAlpha,
4745
...whiteAlpha,
4846
colorBackground: 'white',
4947
colorInputBackground: 'white',
50-
colorText: '#131316',
48+
colorText: '#212126',
5149
colorTextSecondary: '#747686',
52-
colorTextTertiary: '#9394A1',
53-
colorTextLabel: '#42434D',
54-
colorInputText: 'black',
55-
colorShimmer: 'rgba(255, 255, 255, 0.36)',
50+
colorInputText: '#131316',
5651
colorTextOnPrimaryBackground: 'white',
52+
colorShimmer: 'rgba(255, 255, 255, 0.36)',
5753
transparent: 'transparent',
5854
white: 'white',
5955
black: 'black',

packages/clerk-js/src/ui/primitives/FormLabel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { useFormField } from './hooks';
77

88
const { applyVariants } = createVariants(theme => ({
99
base: {
10-
color: theme.colors.$colorTextLabel,
10+
color: theme.colors.$colorText,
1111
...common.textVariants(theme).subtitle,
1212
...common.disabled(theme),
1313
},

packages/clerk-js/src/ui/primitives/Text.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ const { applyVariants, filterProps } = createVariants(theme => {
88
return {
99
base: {
1010
boxSizing: 'border-box',
11-
// TODO: this should probably be inherited
12-
// and handled through cards
13-
color: theme.colors.$colorText,
1411
margin: 0,
1512
fontSize: 'inherit',
1613
...common.disabled(theme),
@@ -23,7 +20,6 @@ const { applyVariants, filterProps } = createVariants(theme => {
2320
danger: { color: theme.colors.$danger500 },
2421
success: { color: theme.colors.$success500 },
2522
neutral: { color: theme.colors.$colorTextSecondary },
26-
tertiary: { color: theme.colors.$colorTextTertiary },
2723
inherit: { color: 'inherit' },
2824
},
2925
truncate: {

packages/themes/src/themes/dark.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ export const dark = experimental_createTheme({
77
colorPrimary: '#ffffff',
88
colorTextOnPrimaryBackground: 'black',
99
colorText: 'white',
10-
colorInputBackground: '#26262B',
1110
colorInputText: 'white',
12-
colorShimmer: 'rgba(255,255,255,0.36)',
11+
colorInputBackground: '#26262B',
1312
},
1413
elements: {
1514
providerIcon__apple: { filter: 'invert(1)' },

packages/types/src/appearance.ts

+22-25
Original file line numberDiff line numberDiff line change
@@ -396,25 +396,28 @@ export type Elements = {
396396
export type Variables = {
397397
/**
398398
* The primary color used throughout the components. Set this to your brand color.
399-
* @default #42434D
399+
* @default '#2F3037'
400400
*/
401401
colorPrimary?: CssColorOrScale;
402402
/**
403403
* The color of text appearing on top of an element that with a background color of {@link Variables.colorPrimary},
404404
* eg: solid primary buttons.
405-
* @default white
405+
* @default 'white'
406406
*/
407407
colorTextOnPrimaryBackground?: CssColor;
408408
/**
409409
* The color used to indicate errors or destructive actions. Set this to your brand's danger color.
410+
* @default '#EF4444'
410411
*/
411412
colorDanger?: CssColorOrScale;
412413
/**
413414
* The color used to indicate an action that completed successfully or a positive result.
415+
* @default '#22C543'
414416
*/
415417
colorSuccess?: CssColorOrScale;
416418
/**
417419
* The color used for potentially destructive actions or when the user's attention is required.
420+
* @default '#F36B16'
418421
*/
419422
colorWarning?: CssColorOrScale;
420423
/**
@@ -426,79 +429,73 @@ export type Variables = {
426429
colorNeutral?: CssColorOrAlphaScale;
427430
/**
428431
* The default text color.
429-
* @default #131316
432+
* @default '#212126'
430433
*/
431434
colorText?: CssColor;
432435
/**
433436
* The text color for elements of lower importance, eg: a subtitle text.
434-
* @default A lighter shade of {@link Variables.colorText}
437+
* This color is a lighter shade of {@link Variables.colorText}.
438+
* @default '#747686'
435439
*/
436440
colorTextSecondary?: CssColor;
437-
/**
438-
* The text color for elements of even lower importance.
439-
* @default An lighter shade of {@link Variables.colorTextSecondary}
440-
*/
441-
colorTextTertiary?: CssColor;
442-
/**
443-
* The text color for labels.
444-
* @default #42434D
445-
*/
446-
colorTextLabel?: CssColor;
447441
/**
448442
* The background color for the card container.
443+
* @default 'white'
449444
*/
450445
colorBackground?: CssColor;
451446
/**
452447
* The default text color inside input elements. To customise the input background color instead, use {@link Variables.colorInputBackground}.
453-
* @default The value of {@link Variables.colorInputText}
448+
* @default 'black'
454449
*/
455450
colorInputText?: CssColor;
456451
/**
457452
* The background color for all input elements.
453+
* @default 'white'
458454
*/
459455
colorInputBackground?: CssColor;
460456
/**
461457
* The color of the avatar shimmer
462-
* @default rgba(255, 255, 255, 0.36)
458+
* @default 'rgba(255, 255, 255, 0.36)'
463459
*/
464460
colorShimmer?: CssColor;
465461
/**
466462
* The default font that will be used in all components.
467463
* This can be the name of a custom font loaded by your code or the name of a web-safe font ((@link WebSafeFont})
468464
* If a specific fontFamily is not provided, the components will inherit the font of the parent element.
469-
* @default inherit
465+
* @default 'inherit'
470466
* @example
471467
* { fontFamily: 'Montserrat' }
472468
*/
473469
fontFamily?: FontFamily;
474470
/**
475471
* The default font that will be used in all buttons. See {@link Variables.fontFamily} for details.
476472
* If not provided, {@link Variables.fontFamily} will be used instead.
477-
* @default inherit
473+
* @default 'inherit'
478474
*/
479475
fontFamilyButtons?: FontFamily;
480476
/**
481-
* The value will be used as the base `md` to calculate all the other scale values (`2xs`, `xs`, `sm`, `lg` and `xl`).
477+
* The value will be used as the base `md` to calculate all the other scale values (`xs`, `sm`, `lg` and `xl`).
482478
* By default, this value is relative to the root fontSize of the html element.
483-
* @default 1rem;
479+
* @default '0.8125rem'
484480
*/
485481
fontSize?: CssLengthUnit;
486482
/**
487-
* The font weight the components will use. By default, the components will use the 400, 500 and 600 weights for normal, medium and bold
488-
* text respectively. You can override the default weights by passing a {@FontWeightScale} object
489-
* @default { normal: 400, medium: 500, bold: 600 };
483+
* The font weight the components will use. By default, the components will use the 400, 500, 600 and 700 weights
484+
* for normal, medium, semibold and bold text respectively.
485+
* You can override the default weights by passing a {@FontWeightScale} object
486+
* @default { normal: 400, medium: 500, semibold: 600, bold: 700 };
490487
*/
491488
fontWeight?: FontWeightScale;
492489
/**
493490
* The size that will be used as the `md` base borderRadius value. This is used as the base to calculate the `sm`, `lg`, `xl`,
494491
* our components use. As a general rule, the bigger an element is, the larger its borderRadius is going to be.
495492
* eg: the Card element uses 'xl'
496-
* @default 0.375rem
493+
* @default '0.375rem'
497494
*/
498495
borderRadius?: CssLengthUnit;
499496
/**
500497
* The base spacing unit that all margins, paddings and gaps between the elements are derived from.
501-
* @default 1rem
498+
* @default '1rem'
502499
*/
503500
spacingUnit?: CssLengthUnit;
504501
};

0 commit comments

Comments
 (0)