How to use the @coreui/coreui/dist/js/coreui-utilities.rgbToHex function in @coreui/coreui

To help you get started, we’ve selected a few @coreui/coreui examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ahrnee / nestjs-bff / webclient / src / app / views / theme / colors.component.ts View on Github external
Array.from(document.querySelectorAll('.theme-color')).forEach(function(el) {
      let elem = document.getElementsByClassName(el.classList[0])[0];
      let background = getStyle('background-color', elem);

      let table = document.createElement('table');
      table.innerHTML = `
        <table class="w-100">
          <tbody><tr>
            <td class="text-muted">HEX:</td>
            <td class="font-weight-bold">${rgbToHex(background)}</td>
          </tr>
          <tr>
            <td class="text-muted">RGB:</td>
            <td class="font-weight-bold">${background}</td>
          </tr>
        </tbody></table>
      `;

      el.parentNode.appendChild(table);
    });
github ahrnee / nestjs-bff / frontend / src / app / views / theme / colors.component.ts View on Github external
Array.from(document.querySelectorAll('.theme-color')).forEach(function(el) {
      const elem = document.getElementsByClassName(el.classList[0])[0];
      const background = getStyle('background-color', elem);

      const table = document.createElement('table');
      table.innerHTML = `
        <table class="w-100">
          <tbody><tr>
            <td class="text-muted">HEX:</td>
            <td class="font-weight-bold">${rgbToHex(background)}</td>
          </tr>
          <tr>
            <td class="text-muted">RGB:</td>
            <td class="font-weight-bold">${background}</td>
          </tr>
        </tbody></table>
      `;

      el.parentNode.appendChild(table);
    });
github apache / pulsar-manager / old-modules / src_example / views / Theme / Colors / Colors.js View on Github external
render() {

    return (
      <table>
        <tbody>
        <tr>
          <td>HEX:</td>
          <td>{ rgbToHex(this.state.bgColor) }</td>
        </tr>
        <tr>
          <td>RGB:</td>
          <td>{ this.state.bgColor }</td>
        </tr>
        </tbody>
      </table>
    )
  }
}

@coreui/coreui

The most popular front-end framework for developing responsive, mobile-first projects on the web rewritten and maintained by the CoreUI Team

MIT
Latest version published 20 days ago

Package Health Score

85 / 100
Full package analysis