Skip to content

Commit ced45c4

Browse files
committed
Add HSLColor to documentation.
1 parent f15a541 commit ced45c4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/item/Item.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ var Item = this.Item = Base.extend(/** @lends Item# */{
11501150
*
11511151
* @property
11521152
* @name Item#strokeColor
1153-
* @type RGBColor|HSBColor|GrayColor
1153+
* @type RGBColor|HSBColor|HSLColor|GrayColor
11541154
*
11551155
* @example {@paperscript}
11561156
* // Setting the stroke color of a path:
@@ -1294,7 +1294,7 @@ var Item = this.Item = Base.extend(/** @lends Item# */{
12941294
*
12951295
* @property
12961296
* @name Item#fillColor
1297-
* @type RGBColor|HSBColor|GrayColor
1297+
* @type RGBColor|HSBColor|HSLColor|GrayColor
12981298
*
12991299
* @example {@paperscript}
13001300
* // Setting the fill color of a path to red:

src/style/PathStyle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ var PathStyle = this.PathStyle = Style.extend(/** @lends PathStyle# */{
7777
*
7878
* @property
7979
* @name PathStyle#strokeColor
80-
* @type RGBColor|HSBColor|GrayColor
80+
* @type RGBColor|HSBColor|HSLColor|GrayColor
8181
*
8282
* @example {@paperscript}
8383
* // Setting the stroke color of a path:
@@ -220,7 +220,7 @@ var PathStyle = this.PathStyle = Style.extend(/** @lends PathStyle# */{
220220
*
221221
* @property
222222
* @name PathStyle#fillColor
223-
* @type RGBColor|HSBColor|GrayColor
223+
* @type RGBColor|HSBColor|HSLColor|GrayColor
224224
*
225225
* @example {@paperscript}
226226
* // Setting the fill color of a path to red:

0 commit comments

Comments
 (0)