1) Select the color you want to get as the chip body color. Then do a right click,
not on the color swatch (doesn't work) but on the "Color" label to the left. Choose "Inspect Element" or "Inspect", depending on whether you use Firefox or Chrome.
This will open the developer tools at the bottom of your screen as shown in the screenshot. Initially, a line containing
<b></b> should be selected in the DOM tree on the left. What you want to do is get to the next sibling element of its parent
<label> element, which is the
<fieldset> Ive marked in red. Click the small triangle next to it to display its child elements.
Using this technique, drill down in the DOM tree forther until you reach a
<label> element that looks as depicted. You should already see the RGB color values in the
background-color: rgb(58, 39, 115) part I've circled on the left; you can also get the hexadecimal representation which will be displayed on the right (also circled) when you single-click the
<label> line.