hex to rgba

Hex to RGBA Converter

Tip: You can enter 8 character Hex code (like #55223344) for transparent RGBA colors.
Converted 转换后为
rgb(17, 24, 39)
rgba(17, 24, 39, 1)

Preview
Nearest tailwind color
v3.3+

Hex: #111827

For text: text-gray-900

For bg: bg-gray-900

Hex to RGBA, 将Hex转换为RGBA

转换逻辑:

以 #1118274e 举例

先取得hex十六位对应rgba的值,如 11,18,27,4e,将r、g、b、a分别转换对应的整数 parseInt(value, 16)

将a 除以 255,取两位小数,得到0.31

将上两步得到的数拼成字符串就是rgba颜色了。如 #1118274e 转换得到 rgba为 rgba(17, 24, 39, 0.31)