JSFiddle - React, Tailwind, and code Playground
by adiioo7
HTML
<section id="section" data-color="#A3D1B5">Section with custom color</section>
JavaScript
jQuery(function($){
$("#section").css("background-color",$("#section").attr("data-color"));
});