Garry's Mod Wiki

ColorToHSV

  number, number, number ColorToHSV( table color )

Description

Converts a Color into HSV color space.

Arguments

1 table color
The Color.

Returns

1 number
The hue in degrees [0, 360].
2 number
The saturation in the range [0, 1].
3 number
The value in the range [0, 1].

Example

Creates a color and prints the HSV values to the console.

print( ColorToHSV( Color( 255, 255, 0 ) ) )
Output:
60 1 1