colorHexToV function

Syntax

  • string colorHexToV(hex)

Parameters

  1. hex—string
    Hex color string in the format "#rrggbb" or "#rrggbboo"

Returns

Returns V value in [0,1] after converting hex color to HSV.

Description

The colorHexToV function converts a hex color string to HSV and returns the V value.

Related

Examples

example.1
	colorHexToV("#608040")
	# result = 0.5019607843137256

example.2
	colorHexToV("#60804080")
	# result = 0.5019607843137256

In this topic