Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ahsankhan26/color-guessing-game
- Owner: ahsankhan26
- Created: 2019-02-24T07:58:48.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-28T08:17:40.000Z (almost 2 years ago)
- Last Synced: 2024-11-03T23:41:59.607Z (3 months ago)
- Topics: colors, css, dom, dom-manipulation, html, javascript, rgb
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) |