Skip to content

Commit 58b1f9d

Browse files
SergeySergey
authored andcommitted
Update Color.php
1 parent 1be59f3 commit 58b1f9d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

lib/Primal/Color/Color.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,29 @@
44

55
abstract class Color {
66

7+
/**
8+
* @return HSVColor
9+
*/
710
abstract function toHSV();
811

12+
/**
13+
* @return HLSColor
14+
*/
915
abstract function toHSL();
1016

17+
/**
18+
* @return RGBColor
19+
*/
1120
abstract function toRGB();
1221

22+
/**
23+
* @return CMYKColor
24+
*/
1325
abstract function toCMYK();
1426

27+
/**
28+
* @return string
29+
*/
1530
abstract function toCSS();
1631
}
1732

0 commit comments

Comments
 (0)