diff --git a/view/theme/frio/php/PHPColors/README.md b/view/theme/frio/php/PHPColors/README.md index 8a481f6f1..d14d8be58 100644 --- a/view/theme/frio/php/PHPColors/README.md +++ b/view/theme/frio/php/PHPColors/README.md @@ -15,8 +15,8 @@ Instantiate an object of the color class with a hex color string `$foo = new Col - darken( [$amount] ) : Allows you to obtain a darker shade of your color. Optionally you can decide to darken using a desired percentage. - lighten( [$amount] ) : Allows you to obtain a lighter shade of your color. Optionally you can decide to lighten using a desired percentage. - mix($hex, [$amount] ) : Allows you to mix another color to your color. Optionally you can decide to set the percent of second color or original color amount is ranged -100..0.100. -- isLight( [$hex] ) : Determins whether your color (or the provide param) is considered a "light" color. Returns `TRUE` if color is light. -- isDark( [$hex] ) : Determins whether your color (or the provide param) is considered a "dark" color. Returns `TRUE` if color is dark. +- isLight( [$hex] ) : Determines whether your color (or the provide param) is considered a "light" color. Returns `TRUE` if color is light. +- isDark( [$hex] ) : Determines whether your color (or the provide param) is considered a "dark" color. Returns `TRUE` if color is dark. - makeGradient( [$amount] ) : Returns an array with 2 indices `light` and `dark`, the initial color will either be selected for `light` or `dark` depending on its brightness, then the other color will be generated. The optional param allows for a static lighten or darkened amount. - complementary() : Returns the color "opposite" or complementary to your color. - getHex() : Returns the original hex color.