Skip to content

Instantly share code, notes, and snippets.

View Deltarios's full-sized avatar
🏠
Working from home

Ariel Rios Deltarios

🏠
Working from home
View GitHub Profile
@danieliser
danieliser / es5.js
Last active March 9, 2025 13:45
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];
}