UNPKG

@digitallyhappy/backstrap

Version:

Free Bootstrap 4 Admin Panel HTML Template

26 lines (23 loc) 720 B
/* global rgbToHex */ import $ from 'jquery' /** * -------------------------------------------------------------------------- * CoreUI Free Boostrap Admin Template (v2.1.15): colors.js * Licensed under MIT (https://coreui.io/license) * -------------------------------------------------------------------------- */ $('.theme-color').each(function () { const Color = $(this).css('backgroundColor') $(this).parent().append(` <table class="w-100"> <tr> <td class="text-muted">HEX:</td> <td class="font-weight-bold">${rgbToHex(Color)}</td> </tr> <tr> <td class="text-muted">RGB:</td> <td class="font-weight-bold">${Color}</td> </tr> </table> `) })