colorHexToB function

Syntax

  • float colorHexToB(hexValue)

Parameters

  1. hexValue—string
    Hexadecimal color string in the format "#rrggbb" or "#rrggbboo".

Returns

Returns B value in [0,1] after converting hexadecimal color to RGB.

Description

The colorHexToB function converts a hexadecimal color string to RGB and returns the B value.

Related

Examples

example.1
	colorHexToB("#4080BF")
	# result = 0.7490196078431374

example.2
	colorHexToB("#4080BF80")
	# result = 0.7490196078431374

In this topic