JSFiddle - React, Tailwind, and code Playground

by bstst

JavaScript

$(this).find('.drag_patch').each(function(){
        var hex = $(this).css('backgroundColor').match(/\d+/g).map(function(a){ return parseInt(a, 16); }).join('');
        var dec = parseInt('0x' + hex);
        console.log(dec);
    });