Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ahsankhan26/color-guessing-game

A simple and effective way to improve your understanding of RGB color scheme for better web development.
https://github.com/ahsankhan26/color-guessing-game

colors css dom dom-manipulation html javascript rgb

Last synced: about 2 months ago
JSON representation

A simple and effective way to improve your understanding of RGB color scheme for better web development.

Awesome Lists containing this project

README

        

# Color-Guessing-Game

try it out : https://ahsankhan.me/Color-Guessing-Game/

A simple and effective way to improve your understanding of RGB color scheme for better web development.

# How RGB Works
RGB stands for "Red", "Green" & "Blue".

The combination of these three colors can make any color in the color spectrum.

The values range from 0-255 for each channel.

The representation is (R,G,B)

# Examples

| Color | RGB |
| ----- | ---- |
| Black | (0,0,0) |
| White | (255,255,255) |
| Red | (255,0,0) |
| Green | (0,255,0) |
| Blue | (0,0,255) |