We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae768c commit c18edc1Copy full SHA for c18edc1
README.md
@@ -31,8 +31,8 @@ $hex = new Hex('#333'); // You can leave out the hashtag if you wish.
31
echo $hex->lighten(15); // Output: #595959 (if you left out the hashtag, it would not be included in the output either)
32
33
// Darken
34
-$hex = new Hex('#fff');
35
-echo $hex->darken(15);
+$hex = new Hex('ffffff');
+echo $hex->darken(15); // Output: d9d9d9
36
```
37
38
## Methods
0 commit comments