"use strict"; /* global rgbToHex */ /** * -------------------------------------------------------------------------- * CoreUI Free Boostrap Admin Template (v2.1.15): colors.js * Licensed under MIT (https://coreui.io/license) * -------------------------------------------------------------------------- */ $('.theme-color').each(function () { var Color = $(this).css('backgroundColor'); $(this).parent().append("\n \n \n \n \n \n \n \n \n \n
HEX:" + rgbToHex(Color) + "
RGB:" + Color + "
\n "); }); //# sourceMappingURL=colors.js.map