`1px solid ${t.colors?.shadow}`,
+ width: 80,
+ height: 80,
+ bg: colorValue,
+ borderRadius: '50%',
+ }}
+ />
+
+
+ {colorName}
+
+
+
HEX
+
{hex.split('#')[1].toUpperCase()}
+
+
+
RGB
+
+ {`${rgba.r},${rgba.g},${rgba.b}${rgba.a !== 1 ? `,${rgba.a}` : ''}`}
+
+
+
+
CMYK
+
{`${cmyk.c},${cmyk.m},${cmyk.y},${cmyk.k}`}
+
+
+
+ );
+};
+
+/**
+ *
+ * palette displayed with XColor items
+ * using a css grid for the dsplay
+ */
+export const XColorPalette: FC