Web Colors.

Slides:



Advertisements
Similar presentations
© 2004, Robert K. Moniot Binary and Hex How to count like a computer.
Advertisements

Cascading Style Sheets. Next Level Cascading Style Sheets (CSS) - control the look and feel of your HTML documents in an organized and efficient manner.
1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
CSS cont. October 5, Unit 4. Padding We can add borders around the elements of our pages To increase the space between the content and the border, use.
Most-to-Least Legible Color Combinations for Viewing on Slide Shows Color and contrast are very important tools in communication. They can be used to enhance.
Web Colors. Web Colors Using CSS Thus far, we have set our text and background colors using actual color names, such as:.example { background-color: gray;
© red ©
Skills: selecting colors, specifying colors in HTML Concepts: combining red, green and blue light to generate colors, combining light versus combining.
Design, Formatting, CSS, & Colors 27 February, 2011.
Design, Formatting, CSS, & Colors September 9, 2010.
Workshop: CSS-Part I Cascading Style Sheets add style to your HTML web pages.
RGB color model Skills: none IT concepts: combining red, green and blue light to generate colors This work is licensed under a Creative Commons Attribution-Noncommercial-
Using color and fonts in HTML and XHTML Please use speaker notes for additional information!
HTML BASIC
Contains 16,777,216 Colors. My Car is red My Car is red How do I add colors to my web page? Notepad Browser Works with the “Standard” colors: Red, Green,
Computer Science 101 Number Systems. Humans Decimal Numbers (base 10) Decimal Numbers (base 10) Sign-Magnitude (-324) Sign-Magnitude (-324) Decimal Fractions.
© Maths Support Service 2007 Binary and Hexadecimal Numbers Next Slide AE98FD AE98FD.
Digital Colour Theory. What is colour theory? It is the theory behind colour mixing and colour combination.
Primaries: magenta, yellow, and cyan This color system is called subtractive because: each primary color absorbs (subtracts) a certain part of the color.
Explanation of Web 6, Web 7 and Web 9 at my site Please be sure to bring up the speaker notes for the explanation Intro - Web 6, Web 7 and Web 9.
Choose Text Styles Sparingly for Emphasis with or without COLOR Bold Italic Underline Combination.
CMYK vs. RGB Design. Primary colors The colors that make up the base for every other color created. Depending on whether you are looking at it from science,
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
Kevin Murphy Web Color Basics Masters Project CS 490.
Unit 1 — HTML BASICS Lesson 2 — HTML Organization Techniques.
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
Review session for Web development. Time line of the internet history When was the ARPANET first demostrated? When did the NFSNet replace it? When did.
Computer Screen Colors1 Colors Colors can be made of mixtures of 3 primary colors. If the medium is illumination (like on the face of a CRT) the colors.
_______________________________________________________________________________________________________________ PHP Bible, 2 nd Edition1  Wiley and the.
Most of the attributes of the body element specify colors for the Web page. Note: The background attribute won’t be useful till we learn about graphics.
Number Systems CIT Network Math
Web Colors. Web Colors: Up until now, we have been using only pre- defined color names, such as "orange" and "lightblue". As web designers, we need the.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Colors. Color of HTML Elements You can control the color of the following elements: You can control the color of the following elements: All text within.
Hexadecimal Codes 1. RGB Color Wheel 2 Before we begin Hexadecimal is a number system Based on using 0 – F to represent 0 – 15 Hex is used to represent.
Applying Color in CSS Web Design – Sec 4-5 Part or all of this lesson was adapted from the University of Washington’s “ Web Design & Development I ” Course.
# Red Green Blue Digital Color RGB to HEX.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Images  Colors.
By: Ashley. Spot Color Spot color refers to the process of selecting text or a graphic object such as a circle and then adding a spot of color to it.
Web Colors and Fonts.
12/20/20151 Color Fall, 2010 Modified by Linda Kenney 10/26/10.
HTML & Color How to Use Color  Backgrounds-  Usually a light color is best  Should have a color based on a theme or plan  Can have a dark.
Computer Science and Software Engineering© 2014 Project Lead The Way, Inc. Bits and Bytes.
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
Elements of Design 1.02 Investigate Design Principles and Elements.
Color in Web Design. Overview: Color Topics Myths & Misconceptions Hexadecimal Notation Color Concepts and Issues.
HSB to RGB to HEX.
CSS Cascading Style Sheets *referenced from
ColorsColors. Color Keywords/Names 140 color keywords/names are defined in the HTML and CSS color specification –17 standard colors (HTML accepts 16 of.
Searching Binary and Hexadecimal numeral systems
Web Colors.
Basic HTML Tags Ryan Frazier April 30,2004 CSC113.
4.01 HTML, CSS and Color.
Hexadecimal Sweet Sixteen!.
Chapter 13 Colors & backgrounds.
Web Development & Design Foundations with HTML5 8th Edition
( Cascading style sheet )
Design Concepts: Module A: The Science of Color
Introduction to HTML.
Cascading Style Sheets
4.01 HTML, CSS and Color.
Web Development & Design Foundations with HTML5
Web Colors.
Hexadecimal Binary Made Easier.
Instructions for creating a template in MS Frontpage
Two ways to discuss color 1) Addition 2) Subtraction
What Color is it?.
4.01 HTML, CSS and Color.
Created By Dick Heckathorn 25 June 2K+3
METEOSAT SECOND GENERATION (MSG) INTRODUCTION TO RGB COLOURS
Presentation transcript:

Web Colors

Web Colors: Up until now, we have been using only pre-defined color names, such as "orange" and "lightblue". As web designers, we need the ability to define exact colors for our elements, not just a few pre-selected ones. By combining any of 256 shades each of red, green, and blue, we will have 256 * 256 * 256 = 16.7 million different colors available to use!

Red, Green, Blue (RGB): Web colors are a function of how much is included of each of the primary colors: Red, Green, and Blue.

RGB Color Codes: (Red, Green, Blue) How much RED? How much GREEN? How much BLUE? When defining web colors, the order is always listed as Red first, then Green, and finally Blue.

Some Common RGB Color Codes: (0, 0, 0) is black (255, 255, 255) is white (255, 0, 0) is red (0, 255, 0) is lime (0, 0, 255) is blue (255, 255, 0) is yellow (0, 255, 255) is cyan (255, 0, 255) is magenta

RGB Hex Codes: In web design, colors are more often represented in Hex codes. Hex codes are in Base 16, or hexadecimal hormat. The digits in base 10, or decimal are: 0,1,2,3,4,5,6,7,8,9 (10 digits) The digits in base 16, or hexadecimal, are: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F (16 digits)

The pound sign (#) always precedes a Hex code. RGB Hex Codes: #12AF30 How much RED? How much GREEN? How much BLUE? The pound sign (#) always precedes a Hex code.

Hex codes can be written in upper case or lower case letters. Some Common Hex Codes: #000000 is black #FFFFFF is white #FF0000 is red #00FF00 is lime #0000FF is blue #FFFF00 is yellow #00FFFF is aqua #ff00ff is magenta Hex codes can be written in upper case or lower case letters.

Colorpicker.com: Hex Codes are automatically generated. Slide sliders up and down to browse the color spectrum. Click on any spot in the color picker area to produce the codes. RGB numbers are also generated. Many applications and website offer tools to help us choose colors and color codes. Colorpicker.com is a free website and very simple to use.

Using Hex Codes in a Web Page: <head> <style type="text/css"> body { background-color:#B11BCC; } </style> </head> <body> <h1>This is my background Color</h1> </body>