[](https://badge.fury.io/js/%40react-theming%2Ftheme-swatch)
npm install @react-theming/theme-swatch
``shell`
npm i @react-theming/theme-swatch
`jsstyled
import { createSwatch } from '@react-theming/theme-swatch';
/ you need to provide a functions from Styled Components, Emotion or '@storybook/theming' /
import styled from '@emotion/styled';
const ThemeSwatch = createSwatch(styled);
colors = ['red', 'green', '#13f0b7', 'rgb(100,180,250)'];
const YourComponent = () => {
return
};
``