Skip to content

Conversation

@alexcarpenter
Copy link
Member

@alexcarpenter alexcarpenter commented Oct 22, 2025

Description

Issue

Allow users to exactly specify the ring color output. Currently when specifying the ring color, we always render with an opacity specified, which can make it difficult to output a specific color.

:root {
  --clerk-color-ring: red; // outputs red at ~ 15%
}

Fix

Instead we will just output the specified value, which allows them to control the opacity

:root {
  --clerk-color-ring: red; // outputs red at 100%
  --clerk-color-ring: rgba(0, 0, 0, .15); // outputs black at 15%
}

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

Summary by CodeRabbit

  • Refactor
    • Adjusted how UI colors (focus ring and modal backdrop) are resolved and how fallback/transparency are applied, improving consistency of visual layering and theme fallbacks across the app.

@changeset-bot
Copy link

changeset-bot bot commented Oct 22, 2025

⚠️ No Changeset found

Latest commit: a6c8fda

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link

vercel bot commented Oct 22, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
clerk-js-sandbox Ready Ready Preview Comment Oct 22, 2025 4:39pm

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 22, 2025

Walkthrough

The PR removes fixed transparency wrapping from parsed variables (HSLA strings returned directly) and moves transparent-default fallback construction into the clerkCssVar() calls for colorModalBackdrop and colorRing, changing where the final transparent fallback is produced.

Changes

Cohort / File(s) Change Summary
Color transparency fallback adjustments
packages/clerk-js/src/ui/customizables/parseVariables.ts, packages/clerk-js/src/ui/foundations/colors.ts
Removed fixed transparency wrapping in parseVariables.ts (HSLA string returned directly or undefined). In colors.ts, moved transparent-default fallback inside clerkCssVar() calls for colorModalBackdrop and colorRing so the fallback uses makeTransparent(defaultColor, alpha) within the CSS var resolution.

Sequence Diagram(s)

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

🐰 I nudged the ring, its veil set free,
HSLA hums now plain to see,
Fallbacks tucked where CSS will mind,
A tidier hue for rabbits kind—
Hop on, brief change, color agree! 🎨

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The pull request title "refactor(clerk-js): Make color ring and modal-backdrop full opacity when modified" clearly and accurately describes the main changes in the changeset. The modifications remove fixed transparency values (0.85 for colorRing, 0.27 for colorModalBackdrop) from both parseVariables.ts and colors.ts, allowing these colors to render at full opacity or at user-specified opacity when customized. The title is concise, specific about which components are affected, and conveys the primary intent without vague language or noise. A reviewer scanning the history would readily understand that this change improves opacity control for color customization.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch alexcarpenter/variables-ring-color

📜 Recent review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 0ba8afb and a6c8fda.

📒 Files selected for processing (2)
  • packages/clerk-js/src/ui/customizables/parseVariables.ts (1 hunks)
  • packages/clerk-js/src/ui/foundations/colors.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (7)
packages/clerk-js/src/ui/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/clerk-js-ui.mdc)

packages/clerk-js/src/ui/**/*.{ts,tsx}: Element descriptors should always be camelCase
Use element descriptors in UI components to enable consistent theming and styling via appearance.elements
Element descriptors should generate unique, stable CSS classes for theming
Element descriptors should handle state classes (e.g., cl-loading, cl-active, cl-error, cl-open) automatically based on component state
Do not render hard-coded values; all user-facing strings must be localized using provided localization methods
Use the useLocalizations hook and localizationKeys utility for all text and error messages
Use the styled system (sx prop, theme tokens, responsive values) for custom component styling
Use useCardState for card-level state, useFormState for form-level state, and useLoadingStatus for loading states
Always use handleError utility for API errors and use translateError for localized error messages
Use useFormControl for form field state, implement proper validation, and handle loading and error states in forms
Use localization keys for all form labels and placeholders
Use element descriptors for consistent styling and follow the theme token system
Use the Card and FormContainer patterns for consistent UI structure

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
packages/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

TypeScript is required for all packages

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
packages/**/*.{ts,tsx,d.ts}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Packages should export TypeScript types alongside runtime code

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit inference engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • packages/clerk-js/src/ui/foundations/colors.ts
  • packages/clerk-js/src/ui/customizables/parseVariables.ts
🧬 Code graph analysis (2)
packages/clerk-js/src/ui/foundations/colors.ts (1)
packages/clerk-js/src/ui/utils/cssVariables.ts (1)
  • clerkCssVar (252-252)
packages/clerk-js/src/ui/customizables/parseVariables.ts (2)
packages/clerk-js/src/ui/utils/colors/index.ts (1)
  • colors (7-164)
packages/clerk-js/src/ui/utils/colors/modern.ts (1)
  • colors (14-114)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: Build Packages
  • GitHub Check: Formatting | Dedupe | Changeset
  • GitHub Check: Analyze (javascript-typescript)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: semgrep-cloud-platform/scan
🔇 Additional comments (2)
packages/clerk-js/src/ui/customizables/parseVariables.ts (1)

77-79: LGTM! User-specified colors now respected at full opacity.

The removal of makeTransparent wrappers correctly implements the PR objective, allowing users to specify exact colors and opacities. The pattern now matches other optional color properties (colorMuted, colorShadow).

The coordinated refactor with colors.ts ensures that:

  • User-provided values are used as-is (full opacity unless user specifies otherwise)
  • Defaults still apply transparency via the clerkCssVar fallback

Note: The past review comment correctly identified that JSDoc documentation at packages/types/src/appearance.ts should be updated to reflect this breaking change. Please ensure that documentation update is completed.

packages/clerk-js/src/ui/foundations/colors.ts (1)

91-94: LGTM! Transparency logic correctly moved to fallback.

The refactoring correctly moves the transparency application from wrapping the entire clerkCssVar result to applying it only to the fallback value. This ensures:

  • When user provides a value: The CSS variable --clerk-color-{ring|modal-backdrop} resolves to the user-specified value at full opacity (or their specified opacity)
  • When user doesn't provide a value: The CSS variable falls back to makeTransparent(defaultColorNeutral, {0.85|0.27}) maintaining the default transparent appearance

The coordinated change with parseVariables.ts correctly implements the PR objective.

Also applies to: 100-103


Comment @coderabbitai help to get the list of available commands and usage tips.

@alexcarpenter alexcarpenter changed the base branch from main to vincent-and-the-doctor October 22, 2025 16:07
@alexcarpenter alexcarpenter changed the base branch from vincent-and-the-doctor to main October 22, 2025 16:07
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between ca00881 and 0ba8afb.

📒 Files selected for processing (2)
  • packages/clerk-js/src/ui/customizables/parseVariables.ts (1 hunks)
  • packages/clerk-js/src/ui/foundations/colors.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (7)
packages/clerk-js/src/ui/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/clerk-js-ui.mdc)

packages/clerk-js/src/ui/**/*.{ts,tsx}: Element descriptors should always be camelCase
Use element descriptors in UI components to enable consistent theming and styling via appearance.elements
Element descriptors should generate unique, stable CSS classes for theming
Element descriptors should handle state classes (e.g., cl-loading, cl-active, cl-error, cl-open) automatically based on component state
Do not render hard-coded values; all user-facing strings must be localized using provided localization methods
Use the useLocalizations hook and localizationKeys utility for all text and error messages
Use the styled system (sx prop, theme tokens, responsive values) for custom component styling
Use useCardState for card-level state, useFormState for form-level state, and useLoadingStatus for loading states
Always use handleError utility for API errors and use translateError for localized error messages
Use useFormControl for form field state, implement proper validation, and handle loading and error states in forms
Use localization keys for all form labels and placeholders
Use element descriptors for consistent styling and follow the theme token system
Use the Card and FormContainer patterns for consistent UI structure

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
packages/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

TypeScript is required for all packages

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
packages/**/*.{ts,tsx,d.ts}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Packages should export TypeScript types alongside runtime code

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit inference engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • packages/clerk-js/src/ui/customizables/parseVariables.ts
  • packages/clerk-js/src/ui/foundations/colors.ts
🧬 Code graph analysis (2)
packages/clerk-js/src/ui/customizables/parseVariables.ts (2)
packages/clerk-js/src/ui/utils/colors/index.ts (1)
  • colors (7-164)
packages/clerk-js/src/ui/utils/colors/modern.ts (1)
  • colors (14-114)
packages/clerk-js/src/ui/foundations/colors.ts (1)
packages/clerk-js/src/ui/utils/cssVariables.ts (1)
  • clerkCssVar (252-252)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: Build Packages
  • GitHub Check: Formatting | Dedupe | Changeset
  • GitHub Check: Analyze (javascript-typescript)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: semgrep-cloud-platform/scan
🔇 Additional comments (1)
packages/clerk-js/src/ui/foundations/colors.ts (1)

99-102: LGTM! Correct restructuring of the transparency application.

The refactoring correctly moves the transparency application from the outer layer (which would affect user-provided values) to the inner default fallback. This ensures:

  1. User-provided --clerk-color-ring values are respected at full opacity
  2. The default fallback (defaultColorNeutral) maintains the 0.85 transparency for backward compatibility
  3. A secondary fallback to neutralAlphaScale.neutralAlpha200 is preserved

The change aligns perfectly with the PR objective while maintaining sensible defaults.

colorShimmer: colors.toHslaString(variables.colorShimmer),
colorMuted: variables.colorMuted ? colors.toHslaString(variables.colorMuted) : undefined,
colorRing: variables.colorRing ? colors.makeTransparent(colors.toHslaString(variables.colorRing), 0.85) : undefined,
colorRing: variables.colorRing ? colors.toHslaString(variables.colorRing) : undefined,
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

LGTM! Verify the breaking change impact across the codebase.

The removal of the forced 0.85 transparency wrapper correctly implements the PR objective, allowing users to specify exact colors and opacities. The pattern now matches other optional color properties like colorMuted and colorShadow.

However, this is a breaking behavioral change. Existing code or user configurations that rely on the automatic transparency will now see colorRing at full opacity unless they explicitly specify a transparent value.

Run the following script to identify any usages that might be affected by this breaking change:


🏁 Script executed:

#!/bin/bash
# Description: Search for colorRing usage across the codebase to assess breaking change impact

# Search for colorRing property access and usage
rg -nP --type=ts --type=tsx -C3 '\bcolorRing\b'

# Search for --clerk-color-ring CSS variable usage
rg -nP -C3 '--clerk-color-ring'

Length of output: 448


🏁 Script executed:

#!/bin/bash
# Fixed searches for colorRing usage assessment

# Search for colorRing property usage in TypeScript files
echo "=== Searching for colorRing property usage ==="
rg -n -C3 'colorRing' --type=ts

echo ""
echo "=== Searching for CSS variable reference ==="
# Search for --clerk-color-ring CSS variable usage
rg -n -C3 'clerk-color-ring'

echo ""
echo "=== Examining parseVariables.ts context around line 77 ==="
fd -t f parseVariables.ts -x cat {} -n | head -100

Length of output: 13165


🏁 Script executed:

#!/bin/bash
# Understand how parseVariables output is used and merged with foundation defaults

echo "=== Examining parseVariables exports and usage ==="
fd -t f -e ts -e tsx parseVariables -x grep -l 'export\|createColorScales'

echo ""
echo "=== Search for imports of createColorScales ==="
rg -n 'createColorScales' --type=ts

echo ""
echo "=== Check how colors from foundations are used as fallback ==="
rg -n 'colorRing.*clerkCssVar\|clerkCssVar.*colorRing' --type=ts

Length of output: 528


🏁 Script executed:

#!/bin/bash
# Trace how foundation colors merge with parseColorScales output

echo "=== Context around parseAppearance.ts line 162 ==="
fd -t f parseAppearance.ts -x sed -n '150,180p' {}

echo ""
echo "=== Check if foundation colors object is pre-populated ==="
rg -n -B5 -A5 'createColorScales\(theme\)' packages/clerk-js/src/ui/customizables/parseAppearance.ts

echo ""
echo "=== View entire parseAppearance.ts to understand initialization ==="
fd -t f parseAppearance.ts -x wc -l {}

Length of output: 1598


Update JSDoc to reflect breaking change in colorRing opacity behavior.

The removal of makeTransparent(0.85) wrapper is a breaking change for users providing explicit colorRing values. The JSDoc at packages/types/src/appearance.ts:757-759 currently states the color is rendered "at 15% opacity," but this guarantee no longer applies when users provide a custom value—they now get full opacity unless explicitly specified.

Update the documentation to clarify:

  • When colorRing is undefined, the default uses 15% opacity
  • When colorRing is explicitly provided, users control the opacity (no forced transparency)

The implementation itself is correct and matches the pattern of adjacent optional color properties (colorMuted, colorShadow). The consuming code across baseTheme.ts, styledSystem/common.ts, and UI components will work correctly with this change.

🤖 Prompt for AI Agents
In packages/clerk-js/src/ui/customizables/parseVariables.ts around line 77 and
in the JSDoc at packages/types/src/appearance.ts lines ~757-759, update the
documentation to reflect the breaking change: clarify that when colorRing is
undefined the library uses the default color rendered at 15% opacity, but when
colorRing is explicitly provided the value is used as-is (users control opacity
and no forced transparency is applied). Edit the JSDoc text to state both
behaviors succinctly and ensure examples/param description indicate that opacity
must be included in the custom color if the user wants transparency.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Oct 22, 2025

Open in StackBlitz

@clerk/agent-toolkit

npm i https://pkg.pr.new/@clerk/agent-toolkit@7052

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@7052

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@7052

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@7052

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@7052

@clerk/dev-cli

npm i https://pkg.pr.new/@clerk/dev-cli@7052

@clerk/elements

npm i https://pkg.pr.new/@clerk/elements@7052

@clerk/clerk-expo

npm i https://pkg.pr.new/@clerk/clerk-expo@7052

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@7052

@clerk/express

npm i https://pkg.pr.new/@clerk/express@7052

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@7052

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@7052

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@7052

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@7052

@clerk/clerk-react

npm i https://pkg.pr.new/@clerk/clerk-react@7052

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@7052

@clerk/remix

npm i https://pkg.pr.new/@clerk/remix@7052

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@7052

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@7052

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@7052

@clerk/themes

npm i https://pkg.pr.new/@clerk/themes@7052

@clerk/types

npm i https://pkg.pr.new/@clerk/types@7052

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@7052

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@7052

commit: a6c8fda

@alexcarpenter alexcarpenter changed the title refactor(clerk-js): Make color ring full opacity when modified refactor(clerk-js): Make color ring and modal-backdrop full opacity when modified Oct 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants