colors icon indicating copy to clipboard operation
colors copied to clipboard

A gorgeous, accessible color system.

Results 27 colors issues
Sort by recently updated
recently updated
newest added

Are there plans to add a [StyleX](https://stylexjs.com/) package similar to the [@stylex/open-props](https://www.npmjs.com/package/@stylexjs/open-props) version of the [open-props](https://open-props.style/)? Thank you.

TailwindCSS recently added an additional `950` shade that works really well for dark mode. It allows for a gorgeous dark background without falling back to **black**. The [TailwindUI Commit Template](https://commit.tailwindui.com/)...

I would like to use [postcss-jit-props](https://github.com/GoogleChromeLabs/postcss-jit-props) to extract only the variables I need from each colour stylesheet. It would allow me to do the following: ```js module.exports = { plugins:...

v3.0.0 was released 3 days ago with out any documentation (nbd). Just curious are there any actual breaking changes? From an API / consumption perspective, it looks the same. The...

Not: ```js export const gray = { gray1: "#fcfcfc", gray2: "#f9f9f9", gray3: "#f0f0f0", // etc. }; ``` But: ```js export const gray = { 1: "#fcfcfc", 2: "#f9f9f9", 3: "#f0f0f0",...

Is there a way to use `@radix-ui/colors` with `tailwind`'s opacity modifier? I know I could just copy the content and modify it, but I would prefer to keep it sync...

I get a warning in lighthouse. I'm using tomato9 as button background, with white as text color. ![Screenshot 2023-07-14 at 20 45 35](https://github.com/radix-ui/colors/assets/52583398/bd43e3cd-5e6a-4862-a2bb-1a2a775f8795)

Hey, It's not really critical but this information are nice to have in npm and when receiving renovate/dependabot update

Currently, Radix Colors does not easily support the concept of a machine's own preference for dark/light mode. This poses a problem when trying to write CSS for dark mode without...

I'd like to toggle the dark theme depending on the browser setting, which can be accessed using [prefers-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme). What's the recommended way of doing that?