Skip to content

Instantly share code, notes, and snippets.

View ronakrrb's full-sized avatar

Ronak Bhandari ronakrrb

View GitHub Profile
@ronakrrb
ronakrrb / es5.js
Created May 24, 2022 11:40 — forked from danieliser/es5.js
Convert Hex Color to rgba with opacity
/**
* ECMA2015
*/
function convertHex(hexCode, opacity = 1){
var hex = hexCode.replace('#', '');
if (hex.length === 3) {
hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2];
}