JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/smoothness/jquery-ui.css">
<div id="dialog" title="foo">bar</div>

CSS

.ui-widget-overlay { background: red }

JavaScript

$('#dialog').dialog({ 
    buttons: { "Ok": function() { $(this).dialog("close"); } },
    modal: true
});