-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add similarity percentage and best score
- Loading branch information
Showing
4 changed files
with
121 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Color Guesser | ||
|
||
Test your artistic sense and see how well you know your color codes. Enter in a HEX color in the input, and you will be able to see what it is in the box right next to it. Try and see how close you can get your inputted color to the actual color! If you want a different color, you can always refresh or hit "New Color" to try something else. | ||
Test your artistic sense and see how well you know your color codes. Enter in a HEX color in the input, and you will be able to see what it is in the box right next to it. Try and see how close you can get your inputted color to the actual color! If you want a different color, you can always refresh or hit "New Color" to try something else. | ||
|
||
## How this Works | ||
|
||
Whenever you input a hexadecimal color, it is converted into an RGB color. This RGB color is then compared to the original color value via the [Euclidean distance](https://en.wikipedia.org/wiki/Color_difference) between the two RGB colors. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters