JSFiddle - React, Tailwind, and code Playground
by nothrem
HTML
<textarea>Some text</textarea>
<select>
<option value="#000000">black</option>
<option value="#FF0000">red</option>
<option value="#0000FF">blue</option>
<option value="#00FF00">green</option>
</select>
JavaScript
$('select').on('change', function() {
$('textarea').css('color', $(this).find(':selected').val());
});