From 17fa773233aa0b44b2cfa0d387cd3a9db0fd67fb Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:17:27 -0400 Subject: [PATCH] spelling: determines Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- view/theme/frio/php/PHPColors/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.