@@ -1565,7 +1565,7 @@ initial =
1565
1565
}
1566
1566
1567
1567
1568
- {- | [RGB color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb() )
1568
+ {- | [RGB color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb)
1569
1569
in functional notation.
1570
1570
-}
1571
1571
rgb : Int -> Int -> Int -> Color
@@ -1579,7 +1579,7 @@ rgb r g b =
1579
1579
}
1580
1580
1581
1581
1582
- {- | [RGBA color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgba() ).
1582
+ {- | [RGBA color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgba).
1583
1583
-}
1584
1584
rgba : Int -> Int -> Int -> Float -> Color
1585
1585
rgba r g b alpha =
@@ -1592,7 +1592,7 @@ rgba r g b alpha =
1592
1592
}
1593
1593
1594
1594
1595
- {- | [HSL color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsl() )
1595
+ {- | [HSL color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsl)
1596
1596
`s` and `l` values are expressed as a number between 0 and 1 and are converted
1597
1597
to the appropriate percentage at compile-time
1598
1598
-}
@@ -1611,7 +1611,7 @@ hsl hueVal saturationVal lightnessVal =
1611
1611
hslaToRgba value hueVal saturationVal lightnessVal 1
1612
1612
1613
1613
1614
- {- | [HSLA color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsla() )
1614
+ {- | [HSLA color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsla)
1615
1615
`s` and `l` values are expressed as a number between 0 and 1 and are converted
1616
1616
to the appropriate percentage at compile-time
1617
1617
-}
@@ -1631,7 +1631,7 @@ hsla hueVal saturationVal lightnessVal alpha =
1631
1631
hslaToRgba value hueVal saturationVal lightnessVal alpha
1632
1632
1633
1633
1634
- {- | [RGB color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb() )
1634
+ {- | [RGB color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb)
1635
1635
in hexadecimal notation. You can optionally include `#` as the first character,
1636
1636
for benefits like syntax highlighting in editors, ease of copy/pasting from
1637
1637
tools which express these as e.g. `#abcdef0`, etc.
0 commit comments