plunger

Tech Novice Tools

Web programming is a blast!

RGB to Hex Calculator - A JavaScript App!

The three primary colors of light are red, green and blue. Together, they blend to make all the colors you see on your computer monitor. Their 'tint values' range from 0 to 255 (integers only!, [0, 255]). A couple of guidelines:

For convenience, they triad is often to converted to a single "hex" code composed of 6 symbols (0-9, A-F). "Hex" is short for "hexadecimal" and is a base-16 number. (See your computer science/math teacher for details). In CSS, that "hex code" is used for coloring elements (for example: html { background-color: #00FF00; } would give a background color of green to a web page.) A few additional "hex" observations:

Design your colors here:
  R: G: B:

This web app was inspired by a page at the site: www.javascripter.net. It was "brought up to code" to HTML5 and whenever possible, the html, CSS and JavaScript (structure, style, behavior) elements were compartmentalized.