instruções e tabelas de cores html

Upload: alex-jm

Post on 08-Jul-2018

227 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/19/2019 Instruções e Tabelas de cores HTML

    1/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 1

    SIMULADOS & TUTORIAIS

    TUTORIAIS HTML

    Como utilizar as cores em HTML

    Copyright 2013  – Todos os Direitos ReservadosJorge Eider F. da Silva

    Proibida a reprodução deste documento no todo ou em parte por quaisquer meios, seja digital, eletrônico ou impres-so sem a expressa autorização do autor por escrito. Os infratores serão punidos de acordo com a Lei.

  • 8/19/2019 Instruções e Tabelas de cores HTML

    2/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 2

    TUTORIAIS HTML

    Como utilizar as cores em HTML

    Introdução

    As cores do HTML são formadas combinando-se as três cores primárias, RED, GREEN eBLUE (RGB). Elas são definidas usando-se a notação hexadecimal (HEX) para a combinaçãodessas três cores. O valor mais baixo que pode ser dado a uma cor é 0 (zero), que em hexaé 00. E o valor mais alto é 255, que em hexa é FF. Os valores hexa são especificados comoum número de 3 pares de dígitos/letras precedidos do símbolo # (cerquilha). Exemplo:#FF00CC.

    Você também pode usar as cores em HTML utilizando o seu valor em decimal (por exemplo:rgb(255,0,255)) ou o nome da própria cor (em inglês, por exemplo: yellow).

    Veja na tabela a seguir os valores em HEXA  e RGB  das principais cores utilizadas emHTML:

    Cor Código HEX Código RGB

    #000000 rgb(0,0,0)

    #FF0000 rgb(255,0,0)

    #00FF00 rgb(0,255,0)

    #0000FF rgb(0,0,255)

    #FFFF00 rgb(255,255,0)

    #00FFFF rgb(0,255,255)#FF00FF rgb(255,0,255)

    #C0C0C0 rgb(192,192,192)

    #FFFFFF rgb(255,255,255)

    Vejamos um exemplo prático:

    Exemplo 1

    Nesse exemplo mostraremos como utilizar as três formas conhecidas do uso da cor em umapágina web.

    Para isso:

    1.  Digite o código abaixo no seu editor de texto e salve-o como: html16-exemplo1.html.

    Tutorial HTML16 - Exemplo 1 - Como utilizar cores em HTML

    Tutorial HTML16 - Exemplo 1 - Como utilizar cores em HTML

    Utilizando as cores nas três formas diferentes

  • 8/19/2019 Instruções e Tabelas de cores HTML

    3/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 3

    Utilizando a notação hexadecimal.

    Utilizando a notação decimal.

    Utilizando o nome da própria cor.

    2.  Após a execução do código no browser será mostrado o seguinte:

    16 Milhões de Cores Diferentes

    A combinação dos valores de Vermelho (RED), Verde (GREEN) e Azul (BLUE), entre 0 e 255,nos dá mais de 16 milhões de cores diferentes (255 x 255 x 255).

    Para você ter uma ideia da quantidade de cores que você pode trabalhar, observe na tabelaa seguir algumas variações da cor vermelha, com as notações em hexa e rgb, sem utilizaras cores verde e azul.

    Variações do Vermelho Código HEX Código RGB

    #000000 rgb(0,0,0) 

    #080000  rgb(8,0,0) 

    #100000 rgb(16,0,0) 

    #180000  rgb(24,0,0) 

    #200000  rgb(32,0,0) 

    #280000  rgb(40,0,0) 

    #300000  rgb(48,0,0) 

    #380000  rgb(56,0,0) 

    #400000  rgb(64,0,0) 

    #480000  rgb(72,0,0) 

    #500000  rgb(80,0,0) 

    #580000  rgb(88,0,0) 

    #600000  rgb(96,0,0) 

    #680000  rgb(104,0,0) 

    http://www.w3schools.com/html/html_colorsmore.asp?color=0http://www.w3schools.com/html/html_colorsmore.asp?color=0http://www.w3schools.com/html/html_colorsmore.asp?color=8http://www.w3schools.com/html/html_colorsmore.asp?color=8http://www.w3schools.com/html/html_colorsmore.asp?color=8http://www.w3schools.com/html/html_colorsmore.asp?color=8http://www.w3schools.com/html/html_colorsmore.asp?color=16http://www.w3schools.com/html/html_colorsmore.asp?color=16http://www.w3schools.com/html/html_colorsmore.asp?color=24http://www.w3schools.com/html/html_colorsmore.asp?color=24http://www.w3schools.com/html/html_colorsmore.asp?color=24http://www.w3schools.com/html/html_colorsmore.asp?color=24http://www.w3schools.com/html/html_colorsmore.asp?color=32http://www.w3schools.com/html/html_colorsmore.asp?color=32http://www.w3schools.com/html/html_colorsmore.asp?color=32http://www.w3schools.com/html/html_colorsmore.asp?color=32http://www.w3schools.com/html/html_colorsmore.asp?color=40http://www.w3schools.com/html/html_colorsmore.asp?color=40http://www.w3schools.com/html/html_colorsmore.asp?color=40http://www.w3schools.com/html/html_colorsmore.asp?color=40http://www.w3schools.com/html/html_colorsmore.asp?color=48http://www.w3schools.com/html/html_colorsmore.asp?color=48http://www.w3schools.com/html/html_colorsmore.asp?color=48http://www.w3schools.com/html/html_colorsmore.asp?color=48http://www.w3schools.com/html/html_colorsmore.asp?color=56http://www.w3schools.com/html/html_colorsmore.asp?color=56http://www.w3schools.com/html/html_colorsmore.asp?color=56http://www.w3schools.com/html/html_colorsmore.asp?color=56http://www.w3schools.com/html/html_colorsmore.asp?color=64http://www.w3schools.com/html/html_colorsmore.asp?color=64http://www.w3schools.com/html/html_colorsmore.asp?color=64http://www.w3schools.com/html/html_colorsmore.asp?color=64http://www.w3schools.com/html/html_colorsmore.asp?color=72http://www.w3schools.com/html/html_colorsmore.asp?color=72http://www.w3schools.com/html/html_colorsmore.asp?color=72http://www.w3schools.com/html/html_colorsmore.asp?color=72http://www.w3schools.com/html/html_colorsmore.asp?color=80http://www.w3schools.com/html/html_colorsmore.asp?color=80http://www.w3schools.com/html/html_colorsmore.asp?color=80http://www.w3schools.com/html/html_colorsmore.asp?color=80http://www.w3schools.com/html/html_colorsmore.asp?color=88http://www.w3schools.com/html/html_colorsmore.asp?color=88http://www.w3schools.com/html/html_colorsmore.asp?color=88http://www.w3schools.com/html/html_colorsmore.asp?color=88http://www.w3schools.com/html/html_colorsmore.asp?color=96http://www.w3schools.com/html/html_colorsmore.asp?color=96http://www.w3schools.com/html/html_colorsmore.asp?color=96http://www.w3schools.com/html/html_colorsmore.asp?color=96http://www.w3schools.com/html/html_colorsmore.asp?color=104http://www.w3schools.com/html/html_colorsmore.asp?color=104http://www.w3schools.com/html/html_colorsmore.asp?color=104http://www.w3schools.com/html/html_colorsmore.asp?color=104http://www.w3schools.com/html/html_colorsmore.asp?color=104http://www.w3schools.com/html/html_colorsmore.asp?color=104http://www.w3schools.com/html/html_colorsmore.asp?color=96http://www.w3schools.com/html/html_colorsmore.asp?color=96http://www.w3schools.com/html/html_colorsmore.asp?color=88http://www.w3schools.com/html/html_colorsmore.asp?color=88http://www.w3schools.com/html/html_colorsmore.asp?color=80http://www.w3schools.com/html/html_colorsmore.asp?color=80http://www.w3schools.com/html/html_colorsmore.asp?color=72http://www.w3schools.com/html/html_colorsmore.asp?color=72http://www.w3schools.com/html/html_colorsmore.asp?color=64http://www.w3schools.com/html/html_colorsmore.asp?color=64http://www.w3schools.com/html/html_colorsmore.asp?color=56http://www.w3schools.com/html/html_colorsmore.asp?color=56http://www.w3schools.com/html/html_colorsmore.asp?color=48http://www.w3schools.com/html/html_colorsmore.asp?color=48http://www.w3schools.com/html/html_colorsmore.asp?color=40http://www.w3schools.com/html/html_colorsmore.asp?color=40http://www.w3schools.com/html/html_colorsmore.asp?color=32http://www.w3schools.com/html/html_colorsmore.asp?color=32http://www.w3schools.com/html/html_colorsmore.asp?color=24http://www.w3schools.com/html/html_colorsmore.asp?color=24http://www.w3schools.com/html/html_colorsmore.asp?color=16http://www.w3schools.com/html/html_colorsmore.asp?color=8http://www.w3schools.com/html/html_colorsmore.asp?color=8http://www.w3schools.com/html/html_colorsmore.asp?color=0

  • 8/19/2019 Instruções e Tabelas de cores HTML

    4/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 4

    #700000  rgb(112,0,0) 

    #780000  rgb(120,0,0) 

    #800000  rgb(128,0,0) 

    #880000  rgb(136,0,0) 

    #900000  rgb(144,0,0) 

    #980000  rgb(152,0,0) #A00000  rgb(160,0,0) 

    #A80000  rgb(168,0,0) 

    #B00000  rgb(176,0,0) 

    #B80000  rgb(184,0,0) 

    #C00000  rgb(192,0,0) 

    #C80000  rgb(200,0,0) 

    #D00000  rgb(208,0,0) 

    #D80000  rgb(216,0,0) 

    #E00000  rgb(224,0,0) 

    #E80000  rgb(232,0,0) 

    #F00000  rgb(240,0,0) 

    #F80000  rgb(248,0,0) 

    #FF0000  rgb(255,0,0) 

    Tons de Cinza

    As cores Cinza são as várias tonalidades da cor preta, e são criadas usando-se um valorigual para todas as três cores existentes. Por exemplo: rgb(8,8,8), rgb(25,25,25),

    #202020, etc.

    Veja na tabela a seguir algumas amostras dessas tonalidades:

    Tons de Cinza Código HEX Código RGB

    #000000 rgb(0,0,0)

    #080808 rgb(8,8,8)

    #101010 rgb(16,16,16)

    #181818 rgb(24,24,24)

    #202020 rgb(32,32,32)

    #282828 rgb(40,40,40)#303030 rgb(48,48,48)

    #383838 rgb(56,56,56)

    #404040 rgb(64,64,64)

    #484848 rgb(72,72,72)

    #505050 rgb(80,80,80)

    #585858 rgb(88,88,88)

    #606060 rgb(96,96,96)

    #686868 rgb(104,104,104)

    #707070 rgb(112,112,112)#787878 rgb(120,120,120)

    #808080 rgb(128,128,128)

    http://www.w3schools.com/html/html_colorsmore.asp?color=112http://www.w3schools.com/html/html_colorsmore.asp?color=112http://www.w3schools.com/html/html_colorsmore.asp?color=112http://www.w3schools.com/html/html_colorsmore.asp?color=112http://www.w3schools.com/html/html_colorsmore.asp?color=120http://www.w3schools.com/html/html_colorsmore.asp?color=120http://www.w3schools.com/html/html_colorsmore.asp?color=120http://www.w3schools.com/html/html_colorsmore.asp?color=120http://www.w3schools.com/html/html_colorsmore.asp?color=128http://www.w3schools.com/html/html_colorsmore.asp?color=128http://www.w3schools.com/html/html_colorsmore.asp?color=128http://www.w3schools.com/html/html_colorsmore.asp?color=128http://www.w3schools.com/html/html_colorsmore.asp?color=136http://www.w3schools.com/html/html_colorsmore.asp?color=136http://www.w3schools.com/html/html_colorsmore.asp?color=136http://www.w3schools.com/html/html_colorsmore.asp?color=136http://www.w3schools.com/html/html_colorsmore.asp?color=144http://www.w3schools.com/html/html_colorsmore.asp?color=144http://www.w3schools.com/html/html_colorsmore.asp?color=144http://www.w3schools.com/html/html_colorsmore.asp?color=144http://www.w3schools.com/html/html_colorsmore.asp?color=152http://www.w3schools.com/html/html_colorsmore.asp?color=152http://www.w3schools.com/html/html_colorsmore.asp?color=152http://www.w3schools.com/html/html_colorsmore.asp?color=152http://www.w3schools.com/html/html_colorsmore.asp?color=160http://www.w3schools.com/html/html_colorsmore.asp?color=160http://www.w3schools.com/html/html_colorsmore.asp?color=160http://www.w3schools.com/html/html_colorsmore.asp?color=160http://www.w3schools.com/html/html_colorsmore.asp?color=168http://www.w3schools.com/html/html_colorsmore.asp?color=168http://www.w3schools.com/html/html_colorsmore.asp?color=168http://www.w3schools.com/html/html_colorsmore.asp?color=168http://www.w3schools.com/html/html_colorsmore.asp?color=176http://www.w3schools.com/html/html_colorsmore.asp?color=176http://www.w3schools.com/html/html_colorsmore.asp?color=176http://www.w3schools.com/html/html_colorsmore.asp?color=176http://www.w3schools.com/html/html_colorsmore.asp?color=184http://www.w3schools.com/html/html_colorsmore.asp?color=184http://www.w3schools.com/html/html_colorsmore.asp?color=184http://www.w3schools.com/html/html_colorsmore.asp?color=184http://www.w3schools.com/html/html_colorsmore.asp?color=192http://www.w3schools.com/html/html_colorsmore.asp?color=192http://www.w3schools.com/html/html_colorsmore.asp?color=192http://www.w3schools.com/html/html_colorsmore.asp?color=192http://www.w3schools.com/html/html_colorsmore.asp?color=200http://www.w3schools.com/html/html_colorsmore.asp?color=200http://www.w3schools.com/html/html_colorsmore.asp?color=200http://www.w3schools.com/html/html_colorsmore.asp?color=200http://www.w3schools.com/html/html_colorsmore.asp?color=208http://www.w3schools.com/html/html_colorsmore.asp?color=208http://www.w3schools.com/html/html_colorsmore.asp?color=208http://www.w3schools.com/html/html_colorsmore.asp?color=208http://www.w3schools.com/html/html_colorsmore.asp?color=216http://www.w3schools.com/html/html_colorsmore.asp?color=216http://www.w3schools.com/html/html_colorsmore.asp?color=216http://www.w3schools.com/html/html_colorsmore.asp?color=216http://www.w3schools.com/html/html_colorsmore.asp?color=224http://www.w3schools.com/html/html_colorsmore.asp?color=224http://www.w3schools.com/html/html_colorsmore.asp?color=224http://www.w3schools.com/html/html_colorsmore.asp?color=224http://www.w3schools.com/html/html_colorsmore.asp?color=232http://www.w3schools.com/html/html_colorsmore.asp?color=232http://www.w3schools.com/html/html_colorsmore.asp?color=232http://www.w3schools.com/html/html_colorsmore.asp?color=232http://www.w3schools.com/html/html_colorsmore.asp?color=240http://www.w3schools.com/html/html_colorsmore.asp?color=240http://www.w3schools.com/html/html_colorsmore.asp?color=240http://www.w3schools.com/html/html_colorsmore.asp?color=240http://www.w3schools.com/html/html_colorsmore.asp?color=248http://www.w3schools.com/html/html_colorsmore.asp?color=248http://www.w3schools.com/html/html_colorsmore.asp?color=248http://www.w3schools.com/html/html_colorsmore.asp?color=248http://www.w3schools.com/html/html_colorsmore.asp?color=255http://www.w3schools.com/html/html_colorsmore.asp?color=255http://www.w3schools.com/html/html_colorsmore.asp?color=255http://www.w3schools.com/html/html_colorsmore.asp?color=255http://www.w3schools.com/html/html_colorsmore.asp?color=255http://www.w3schools.com/html/html_colorsmore.asp?color=255http://www.w3schools.com/html/html_colorsmore.asp?color=248http://www.w3schools.com/html/html_colorsmore.asp?color=248http://www.w3schools.com/html/html_colorsmore.asp?color=240http://www.w3schools.com/html/html_colorsmore.asp?color=240http://www.w3schools.com/html/html_colorsmore.asp?color=232http://www.w3schools.com/html/html_colorsmore.asp?color=232http://www.w3schools.com/html/html_colorsmore.asp?color=224http://www.w3schools.com/html/html_colorsmore.asp?color=224http://www.w3schools.com/html/html_colorsmore.asp?color=216http://www.w3schools.com/html/html_colorsmore.asp?color=216http://www.w3schools.com/html/html_colorsmore.asp?color=208http://www.w3schools.com/html/html_colorsmore.asp?color=208http://www.w3schools.com/html/html_colorsmore.asp?color=200http://www.w3schools.com/html/html_colorsmore.asp?color=200http://www.w3schools.com/html/html_colorsmore.asp?color=192http://www.w3schools.com/html/html_colorsmore.asp?color=192http://www.w3schools.com/html/html_colorsmore.asp?color=184http://www.w3schools.com/html/html_colorsmore.asp?color=184http://www.w3schools.com/html/html_colorsmore.asp?color=176http://www.w3schools.com/html/html_colorsmore.asp?color=176http://www.w3schools.com/html/html_colorsmore.asp?color=168http://www.w3schools.com/html/html_colorsmore.asp?color=168http://www.w3schools.com/html/html_colorsmore.asp?color=160http://www.w3schools.com/html/html_colorsmore.asp?color=160http://www.w3schools.com/html/html_colorsmore.asp?color=152http://www.w3schools.com/html/html_colorsmore.asp?color=152http://www.w3schools.com/html/html_colorsmore.asp?color=144http://www.w3schools.com/html/html_colorsmore.asp?color=144http://www.w3schools.com/html/html_colorsmore.asp?color=136http://www.w3schools.com/html/html_colorsmore.asp?color=136http://www.w3schools.com/html/html_colorsmore.asp?color=128http://www.w3schools.com/html/html_colorsmore.asp?color=128http://www.w3schools.com/html/html_colorsmore.asp?color=120http://www.w3schools.com/html/html_colorsmore.asp?color=120http://www.w3schools.com/html/html_colorsmore.asp?color=112http://www.w3schools.com/html/html_colorsmore.asp?color=112

  • 8/19/2019 Instruções e Tabelas de cores HTML

    5/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 5

    #888888 rgb(136,136,136)

    #909090 rgb(144,144,144)

    #989898 rgb(152,152,152)

    #A0A0A0 rgb(160,160,160)

    #A8A8A8 rgb(168,168,168)

    #B0B0B0 rgb(176,176,176)#B8B8B8 rgb(184,184,184)

    #C0C0C0 rgb(192,192,192)

    #C8C8C8 rgb(200,200,200)

    #D0D0D0 rgb(208,208,208)

    #D8D8D8 rgb(216,216,216)

    #E0E0E0 rgb(224,224,224)

    #E8E8E8 rgb(232,232,232)

    #F0F0F0 rgb(240,240,240)

    #F8F8F8 rgb(248,248,248)

    #FFFFFF rgb(255,255,255)

    Cores Web Seguras

    Algum tempo atrás quando os computadores suportavam apenas 256 cores diferentes, umalista de 216 cores foi sugerida como as cores padrão para a Web, reservando-se 40 coresfixas para o sistema. A paleta de 216 cores foi criada para assegurar que todos os compu-tadores pudessem mostrar as cores corrretamente quando rodassem a partir de uma paletade 256 cores.

    Atualmente isso não é mais importante, considerando que todos os computadores de hoje

     já geram milhões de cores diferentes. De qualquer forma, veja na tabela a seguir as 216cores padrão:

    000000 000033 000066 000099 0000CC 0000FF

    003300 003333 003366 003399 0033CC 0033FF

    006600 006633 006666 006699 0066CC 0066FF

    009900 009933 009966 009999 0099CC 0099FF

    00CC00 00CC33 00CC66 00CC99 00CCCC 00CCFF

    00FF00 00FF33 00FF66 00FF99 00FFCC 00FFFF

    330000 330033 330066 330099 3300CC 3300FF

    333300 333333 333366 333399 3333CC 3333FF

    336600 336633 336666 336699 3366CC 3366FF339900 339933 339966 339999 3399CC 3399FF

    33CC00 33CC33 33CC66 33CC99 33CCCC 33CCFF

    33FF00 33FF33 33FF66 33FF99 33FFCC 33FFFF

    660000 660033 660066 660099 6600CC 6600FF

    663300 663333 663366 663399 6633CC 6633FF

    666600 666633 666666 666699 6666CC 6666FF

    669900 669933 669966 669999 6699CC 6699FF

    66CC00 66CC33 66CC66 66CC99 66CCCC 66CCFF

    66FF00 66FF33 66FF66 66FF99 66FFCC 66FFFF

    990000 990033 990066 990099 9900CC 9900FF

    993300 993333 993366 993399 9933CC 9933FF

    996600 996633 996666 996699 9966CC 9966FF

    999900 999933 999966 999999 9999CC 9999FF

  • 8/19/2019 Instruções e Tabelas de cores HTML

    6/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 6

    99CC00 99CC33 99CC66 99CC99 99CCCC 99CCFF

    99FF00 99FF33 99FF66 99FF99 99FFCC 99FFFF

    CC0000 CC0033 CC0066 CC0099 CC00CC CC00FF

    CC3300 CC3333 CC3366 CC3399 CC33CC CC33FF

    CC6600 CC6633 CC6666 CC6699 CC66CC CC66FF

    CC9900 CC9933 CC9966 CC9999 CC99CC CC99FF

    CCCC00 CCCC33 CCCC66 CCCC99 CCCCCC CCCCFFCCFF00 CCFF33 CCFF66 CCFF99 CCFFCC CCFFFF

    FF0000 FF0033 FF0066 FF0099 FF00CC FF00FF

    FF3300 FF3333 FF3366 FF3399 FF33CC FF33FF

    FF6600 FF6633 FF6666 FF6699 FF66CC FF66FF

    FF9900 FF9933 FF9966 FF9999 FF99CC FF99FF

    FFCC00 FFCC33 FFCC66 FFCC99 FFCCCC FFCCFF

    FFFF00 FFFF33 FFFF66 FFFF99 FFFFCC FFFFFF

    Nomes de Cores em HTML

    Para a especificação de cores para o HTML e CSS foram definidas 147 cores diferentes, sen-do 16 nomes de cores básicas, mais 130 adicionais. Os nomes das 16 cores básicas são asseguintes:

      aqua  black  blue  fuchsia  gray  green  lime

      maroon  navy  olive  purple  red  silver  teal  white  yellow

    Para facilitar o uso das cores nas suas páginas HTML e para efeito de consulta, fornecemosabaixo uma lista em ordem alfabética de algumas cores com seu respectivo código hexade-cimal e a cor correspondente:

    Nome HEX Cor

    AliceBlue  #F0F8FF  

    AntiqueWhite  #FAEBD7 

    Aqua  #00FFFF  

    Aquamarine  #7FFFD4  

    Azure  #F0FFFF  

    Beige  #F5F5DC  

    Bisque  #FFE4C4  

    Black  #000000  

    BlanchedAlmond  #FFEBCD  

    http://www.w3schools.com/tags/ref_color_tryit.asp?color=AliceBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=AliceBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0F8FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=AntiqueWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=AntiqueWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAEBD7http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAEBD7http://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquamarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquamarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7FFFD4http://www.w3schools.com/tags/ref_color_tryit.asp?hex=7FFFD4http://www.w3schools.com/tags/ref_color_tryit.asp?color=Azurehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Azurehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Beigehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Beigehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5F5DChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Bisquehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Bisquehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4C4http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4C4http://www.w3schools.com/tags/ref_color_tryit.asp?color=Blackhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Blackhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000000http://www.w3schools.com/tags/ref_color_tryit.asp?color=BlanchedAlmondhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=BlanchedAlmondhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFEBCDhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFEBCDhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFEBCDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=BlanchedAlmondhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Blackhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4C4http://www.w3schools.com/tags/ref_color_tryit.asp?color=Bisquehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5F5DChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Beigehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Azurehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7FFFD4http://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquamarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAEBD7http://www.w3schools.com/tags/ref_color_tryit.asp?color=AntiqueWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0F8FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=AliceBlue

  • 8/19/2019 Instruções e Tabelas de cores HTML

    7/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 7

    Blue  #0000FF  

    BlueViolet  #8A2BE2  

    Brown  #A52A2A  

    BurlyWood  #DEB887 

    CadetBlue  #5F9EA0  

    Chartreuse  #7FFF00 

    Chocolate  #D2691E  

    Coral  #FF7F50  

    CornflowerBlue  #6495ED  

    Cornsilk  #FFF8DC 

    Crimson  #DC143C  

    Cyan  #00FFFF  

    DarkBlue  #00008B  

    DarkCyan  #008B8B  

    DarkGoldenRod  #B8860B  

    DarkGray  #A9A9A9 

    DarkGrey  #A9A9A9 

    DarkGreen  #006400  

    DarkKhaki  #BDB76B 

    DarkMagenta  #8B008B  

    DarkOliveGreen  #556B2F  

    Darkorange  #FF8C00  

    DarkOrchid  #9932CC  

    DarkRed  #8B0000  

    DarkSalmon  #E9967A  

    DarkSeaGreen  #8FBC8F  

    DarkSlateBlue  #483D8B  

    DarkSlateGray  #2F4F4F  

    DarkSlateGrey  #2F4F4F  

    DarkTurquoise  #00CED1 

    DarkViolet  #9400D3  

    DeepPink  #FF1493  

    DeepSkyBlue  #00BFFF 

    DimGray  #696969  

    DimGrey  #696969  

    DodgerBlue  #1E90FF  

    FireBrick  #B22222  

    FloralWhite  #FFFAF0  

    ForestGreen  #228B22  

    Fuchsia  #FF00FF  

    Gainsboro  #DCDCDC 

    GhostWhite  #F8F8FF  

    Gold  #FFD700  

    GoldenRod  #DAA520 

    http://www.w3schools.com/tags/ref_color_tryit.asp?color=Bluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Bluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=BlueViolethttp://www.w3schools.com/tags/ref_color_tryit.asp?color=BlueViolethttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8A2BE2http://www.w3schools.com/tags/ref_color_tryit.asp?hex=8A2BE2http://www.w3schools.com/tags/ref_color_tryit.asp?color=Brownhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Brownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A52A2Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=BurlyWoodhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=BurlyWoodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DEB887http://www.w3schools.com/tags/ref_color_tryit.asp?hex=DEB887http://www.w3schools.com/tags/ref_color_tryit.asp?color=CadetBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CadetBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=5F9EA0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=5F9EA0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Chartreusehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Chartreusehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7FFF00http://www.w3schools.com/tags/ref_color_tryit.asp?hex=7FFF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=Chocolatehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Chocolatehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D2691Ehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Coralhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Coralhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF7F50http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF7F50http://www.w3schools.com/tags/ref_color_tryit.asp?color=CornflowerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CornflowerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6495EDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cornsilkhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cornsilkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF8DChttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF8DChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Crimsonhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Crimsonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DC143Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00008Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008B8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B8860Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A9A9A9http://www.w3schools.com/tags/ref_color_tryit.asp?hex=A9A9A9http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A9A9A9http://www.w3schools.com/tags/ref_color_tryit.asp?hex=A9A9A9http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=006400http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkKhakihttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkKhakihttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BDB76Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BDB76Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkMagentahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkMagentahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8B008Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOliveGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOliveGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=556B2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=556B2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Darkorangehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Darkorangehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF8C00http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF8C00http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOrchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOrchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9932CChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8B0000http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSalmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSalmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E9967Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E9967Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8FBC8Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8FBC8Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=483D8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00CED1http://www.w3schools.com/tags/ref_color_tryit.asp?hex=00CED1http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkViolethttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkViolethttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9400D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF1493http://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00BFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00BFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=696969http://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=696969http://www.w3schools.com/tags/ref_color_tryit.asp?color=DodgerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DodgerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=1E90FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=FireBrickhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=FireBrickhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B22222http://www.w3schools.com/tags/ref_color_tryit.asp?color=FloralWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=FloralWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFAF0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFAF0http://www.w3schools.com/tags/ref_color_tryit.asp?color=ForestGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=ForestGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=228B22http://www.w3schools.com/tags/ref_color_tryit.asp?color=Fuchsiahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Fuchsiahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF00FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Gainsborohttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Gainsborohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DCDCDChttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DCDCDChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=GhostWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=GhostWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F8F8FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Goldhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Goldhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFD700http://www.w3schools.com/tags/ref_color_tryit.asp?color=GoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=GoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DAA520http://www.w3schools.com/tags/ref_color_tryit.asp?hex=DAA520http://www.w3schools.com/tags/ref_color_tryit.asp?hex=DAA520http://www.w3schools.com/tags/ref_color_tryit.asp?color=GoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFD700http://www.w3schools.com/tags/ref_color_tryit.asp?color=Goldhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F8F8FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=GhostWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DCDCDChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Gainsborohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF00FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Fuchsiahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=228B22http://www.w3schools.com/tags/ref_color_tryit.asp?color=ForestGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFAF0http://www.w3schools.com/tags/ref_color_tryit.asp?color=FloralWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B22222http://www.w3schools.com/tags/ref_color_tryit.asp?color=FireBrickhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=1E90FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DodgerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=696969http://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=696969http://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00BFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF1493http://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9400D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkViolethttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00CED1http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=483D8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8FBC8Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E9967Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSalmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8B0000http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9932CChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOrchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF8C00http://www.w3schools.com/tags/ref_color_tryit.asp?color=Darkorangehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=556B2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOliveGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8B008Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkMagentahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BDB76Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkKhakihttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=006400http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A9A9A9http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A9A9A9http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B8860Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008B8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00008Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DC143Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Crimsonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF8DChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cornsilkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6495EDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CornflowerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF7F50http://www.w3schools.com/tags/ref_color_tryit.asp?color=Coralhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D2691Ehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Chocolatehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7FFF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=Chartreusehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=5F9EA0http://www.w3schools.com/tags/ref_color_tryit.asp?color=CadetBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DEB887http://www.w3schools.com/tags/ref_color_tryit.asp?color=BurlyWoodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A52A2Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Brownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8A2BE2http://www.w3schools.com/tags/ref_color_tryit.asp?color=BlueViolethttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Blue

  • 8/19/2019 Instruções e Tabelas de cores HTML

    8/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 8

    Gray  #808080  

    Grey  #808080  

    Green  #008000  

    GreenYellow  #ADFF2F  

    HoneyDew  #F0FFF0  

    HotPink  #FF69B4 

    IndianRed #CD5C5C 

    Indigo #4B0082  

    Ivory  #FFFFF0  

    Khaki  #F0E68C  

    Lavender  #E6E6FA  

    LavenderBlush  #FFF0F5  

    LawnGreen  #7CFC00 

    LemonChiffon  #FFFACD 

    LightBlue  #ADD8E6 

    LightCoral  #F08080  

    LightCyan  #E0FFFF  

    LightGoldenRodYellow  #FAFAD2 

    LightGray  #D3D3D3  

    LightGrey  #D3D3D3  

    LightGreen  #90EE90  

    LightPink  #FFB6C1  

    LightSalmon  #FFA07A  

    LightSeaGreen  #20B2AA  

    LightSkyBlue  #87CEFA 

    LightSlateGray  #778899  

    LightSlateGrey  #778899  

    LightSteelBlue  #B0C4DE 

    LightYellow  #FFFFE0  

    Lime  #00FF00  

    LimeGreen  #32CD32  

    Linen  #FAF0E6  

    Magenta  #FF00FF  

    Maroon  #800000  

    MediumAquaMarine  #66CDAA  

    MediumBlue  #0000CD  

    MediumOrchid  #BA55D3 

    MediumPurple  #9370DB  

    MediumSeaGreen  #3CB371  

    MediumSlateBlue  #7B68EE  

    MediumSpringGreen  #00FA9A 

    MediumTurquoise  #48D1CC  

    MediumVioletRed  #C71585  

    MidnightBlue  #191970  

    http://www.w3schools.com/tags/ref_color_tryit.asp?color=Grayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Grayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=808080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Greyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Greyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=808080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Greenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Greenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008000http://www.w3schools.com/tags/ref_color_tryit.asp?color=GreenYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=GreenYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=ADFF2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=HoneyDewhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=HoneyDewhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0FFF0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0FFF0http://www.w3schools.com/tags/ref_color_tryit.asp?color=HotPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=HotPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF69B4http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF69B4http://www.w3schools.com/tags/ref_color_tryit.asp?color=IndianRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=CD5C5Chttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=CD5C5Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Indigohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4B0082http://www.w3schools.com/tags/ref_color_tryit.asp?color=Ivoryhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Ivoryhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFF0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFF0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Khakihttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Khakihttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0E68Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Lavenderhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Lavenderhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E6E6FAhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E6E6FAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LavenderBlushhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LavenderBlushhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF0F5http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF0F5http://www.w3schools.com/tags/ref_color_tryit.asp?color=LawnGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LawnGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7CFC00http://www.w3schools.com/tags/ref_color_tryit.asp?hex=7CFC00http://www.w3schools.com/tags/ref_color_tryit.asp?color=LemonChiffonhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LemonChiffonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFACDhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFACDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=ADD8E6http://www.w3schools.com/tags/ref_color_tryit.asp?hex=ADD8E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightCoralhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightCoralhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F08080http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E0FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E0FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGoldenRodYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGoldenRodYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAFAD2http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAFAD2http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D3D3D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D3D3D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=90EE90http://www.w3schools.com/tags/ref_color_tryit.asp?hex=90EE90http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFB6C1http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFB6C1http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSalmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSalmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFA07Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFA07Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=20B2AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=87CEFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=87CEFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=778899http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=778899http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B0C4DEhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B0C4DEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFE0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFE0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Limehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Limehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=LimeGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LimeGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=32CD32http://www.w3schools.com/tags/ref_color_tryit.asp?color=Linenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Linenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAF0E6http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAF0E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=Magentahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Magentahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF00FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Maroonhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Maroonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=800000http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumAquaMarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumAquaMarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=66CDAAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000CDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumOrchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumOrchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BA55D3http://www.w3schools.com/tags/ref_color_tryit.asp?hex=BA55D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumPurplehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumPurplehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9370DBhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=3CB371http://www.w3schools.com/tags/ref_color_tryit.asp?hex=3CB371http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7B68EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7B68EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FA9Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FA9Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=48D1CChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumVioletRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumVioletRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=C71585http://www.w3schools.com/tags/ref_color_tryit.asp?color=MidnightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MidnightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=191970http://www.w3schools.com/tags/ref_color_tryit.asp?hex=191970http://www.w3schools.com/tags/ref_color_tryit.asp?color=MidnightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=C71585http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumVioletRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=48D1CChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FA9Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7B68EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=3CB371http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9370DBhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumPurplehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BA55D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumOrchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000CDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=66CDAAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumAquaMarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=800000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Maroonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF00FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Magentahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAF0E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=Linenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=32CD32http://www.w3schools.com/tags/ref_color_tryit.asp?color=LimeGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=Limehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFE0http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B0C4DEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=778899http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=778899http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=87CEFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=20B2AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFA07Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSalmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFB6C1http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=90EE90http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D3D3D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D3D3D3http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FAFAD2http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightGoldenRodYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E0FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F08080http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightCoralhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=ADD8E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=LightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFACDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LemonChiffonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=7CFC00http://www.w3schools.com/tags/ref_color_tryit.asp?color=LawnGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF0F5http://www.w3schools.com/tags/ref_color_tryit.asp?color=LavenderBlushhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=E6E6FAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Lavenderhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0E68Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Khakihttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFF0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Ivoryhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4B0082http://www.w3schools.com/tags/ref_color_tryit.asp?color=Indigohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=CD5C5Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=IndianRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF69B4http://www.w3schools.com/tags/ref_color_tryit.asp?color=HotPinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F0FFF0http://www.w3schools.com/tags/ref_color_tryit.asp?color=HoneyDewhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=ADFF2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=GreenYellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Greenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=808080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Greyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=808080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Gray

  • 8/19/2019 Instruções e Tabelas de cores HTML

    9/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 9

    MintCream  #F5FFFA  

    MistyRose  #FFE4E1  

    Moccasin  #FFE4B5  

    NavajoWhite  #FFDEAD 

    Navy  #000080  

    OldLace  #FDF5E6 

    Olive  #808000  

    OliveDrab  #6B8E23  

    Orange  #FFA500  

    OrangeRed  #FF4500  

    Orchid  #DA70D6  

    PaleGoldenRod  #EEE8AA 

    PaleGreen  #98FB98  

    PaleTurquoise  #AFEEEE 

    PaleVioletRed  #DB7093  

    PapayaWhip  #FFEFD5  

    PeachPuff   #FFDAB9 

    Peru  #CD853F  

    Pink  #FFC0CB 

    Plum  #DDA0DD 

    PowderBlue  #B0E0E6  

    Purple  #800080  

    Red  #FF0000  

    RosyBrown  #BC8F8F  

    RoyalBlue  #4169E1  

    SaddleBrown  #8B4513  

    Salmon  #FA8072  

    SandyBrown  #F4A460  

    SeaGreen  #2E8B57  

    SeaShell  #FFF5EE  

    Sienna  #A0522D  

    Silver  #C0C0C0 

    SkyBlue  #87CEEB 

    SlateBlue  #6A5ACD 

    SlateGray  #708090  

    SlateGrey  #708090  

    Snow  #FFFAFA 

    SpringGreen  #00FF7F  

    SteelBlue  #4682B4  

    Tan  #D2B48C  

    Teal  #008080  

    Thistle  #D8BFD8 

    Tomato  #FF6347  

    Turquoise  #40E0D0  

    http://www.w3schools.com/tags/ref_color_tryit.asp?color=MintCreamhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MintCreamhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5FFFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5FFFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MistyRosehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MistyRosehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4E1http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4E1http://www.w3schools.com/tags/ref_color_tryit.asp?color=Moccasinhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Moccasinhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4B5http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4B5http://www.w3schools.com/tags/ref_color_tryit.asp?color=NavajoWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=NavajoWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFDEADhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFDEADhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Navyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Navyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000080http://www.w3schools.com/tags/ref_color_tryit.asp?color=OldLacehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=OldLacehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FDF5E6http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FDF5E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=Olivehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Olivehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=808000http://www.w3schools.com/tags/ref_color_tryit.asp?color=OliveDrabhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=OliveDrabhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6B8E23http://www.w3schools.com/tags/ref_color_tryit.asp?hex=6B8E23http://www.w3schools.com/tags/ref_color_tryit.asp?color=Orangehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Orangehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFA500http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFA500http://www.w3schools.com/tags/ref_color_tryit.asp?color=OrangeRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=OrangeRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF4500http://www.w3schools.com/tags/ref_color_tryit.asp?color=Orchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Orchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DA70D6http://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleGoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleGoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=EEE8AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=EEE8AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=98FB98http://www.w3schools.com/tags/ref_color_tryit.asp?hex=98FB98http://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=AFEEEEhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=AFEEEEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleVioletRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleVioletRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DB7093http://www.w3schools.com/tags/ref_color_tryit.asp?color=PapayaWhiphttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PapayaWhiphttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFEFD5http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFEFD5http://www.w3schools.com/tags/ref_color_tryit.asp?color=PeachPuffhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PeachPuffhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFDAB9http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFDAB9http://www.w3schools.com/tags/ref_color_tryit.asp?color=Peruhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Peruhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=CD853Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=CD853Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Pinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Pinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFC0CBhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFC0CBhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Plumhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Plumhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DDA0DDhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DDA0DDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PowderBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PowderBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B0E0E6http://www.w3schools.com/tags/ref_color_tryit.asp?hex=B0E0E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=Purplehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Purplehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=800080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Redhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Redhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF0000http://www.w3schools.com/tags/ref_color_tryit.asp?color=RosyBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=RosyBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BC8F8Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BC8F8Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=RoyalBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=RoyalBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4169E1http://www.w3schools.com/tags/ref_color_tryit.asp?color=SaddleBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SaddleBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8B4513http://www.w3schools.com/tags/ref_color_tryit.asp?color=Salmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Salmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FA8072http://www.w3schools.com/tags/ref_color_tryit.asp?color=SandyBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SandyBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F4A460http://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2E8B57http://www.w3schools.com/tags/ref_color_tryit.asp?hex=2E8B57http://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaShellhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaShellhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF5EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF5EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Siennahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Siennahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A0522Dhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Silverhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Silverhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=C0C0C0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=C0C0C0http://www.w3schools.com/tags/ref_color_tryit.asp?color=SkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=87CEEBhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=87CEEBhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6A5ACDhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6A5ACDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=708090http://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=708090http://www.w3schools.com/tags/ref_color_tryit.asp?color=Snowhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Snowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFAFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFAFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF7Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF7Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4682B4http://www.w3schools.com/tags/ref_color_tryit.asp?color=Tanhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Tanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D2B48Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Tealhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Tealhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Thistlehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Thistlehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D8BFD8http://www.w3schools.com/tags/ref_color_tryit.asp?hex=D8BFD8http://www.w3schools.com/tags/ref_color_tryit.asp?color=Tomatohttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Tomatohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF6347http://www.w3schools.com/tags/ref_color_tryit.asp?color=Turquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Turquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=40E0D0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=40E0D0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Turquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF6347http://www.w3schools.com/tags/ref_color_tryit.asp?color=Tomatohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D8BFD8http://www.w3schools.com/tags/ref_color_tryit.asp?color=Thistlehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Tealhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=D2B48Chttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Tanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4682B4http://www.w3schools.com/tags/ref_color_tryit.asp?color=SteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF7Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFAFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Snowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=708090http://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=708090http://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6A5ACDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=87CEEBhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=C0C0C0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Silverhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=A0522Dhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Siennahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFF5EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaShellhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2E8B57http://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F4A460http://www.w3schools.com/tags/ref_color_tryit.asp?color=SandyBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FA8072http://www.w3schools.com/tags/ref_color_tryit.asp?color=Salmonhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=8B4513http://www.w3schools.com/tags/ref_color_tryit.asp?color=SaddleBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4169E1http://www.w3schools.com/tags/ref_color_tryit.asp?color=RoyalBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=BC8F8Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=RosyBrownhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF0000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Redhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=800080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Purplehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=B0E0E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=PowderBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DDA0DDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Plumhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFC0CBhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Pinkhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=CD853Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Peruhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFDAB9http://www.w3schools.com/tags/ref_color_tryit.asp?color=PeachPuffhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFEFD5http://www.w3schools.com/tags/ref_color_tryit.asp?color=PapayaWhiphttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DB7093http://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleVioletRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=AFEEEEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=98FB98http://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=EEE8AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=PaleGoldenRodhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=DA70D6http://www.w3schools.com/tags/ref_color_tryit.asp?color=Orchidhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FF4500http://www.w3schools.com/tags/ref_color_tryit.asp?color=OrangeRedhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFA500http://www.w3schools.com/tags/ref_color_tryit.asp?color=Orangehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6B8E23http://www.w3schools.com/tags/ref_color_tryit.asp?color=OliveDrabhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=808000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Olivehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FDF5E6http://www.w3schools.com/tags/ref_color_tryit.asp?color=OldLacehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Navyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFDEADhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=NavajoWhitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4B5http://www.w3schools.com/tags/ref_color_tryit.asp?color=Moccasinhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFE4E1http://www.w3schools.com/tags/ref_color_tryit.asp?color=MistyRosehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5FFFAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MintCream

  • 8/19/2019 Instruções e Tabelas de cores HTML

    10/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 10

    Violet  #EE82EE  

    Wheat  #F5DEB3 

    White  #FFFFFF  

    WhiteSmoke  #F5F5F5  

    Yellow  #FFFF00  

    YellowGreen  #9ACD32 

    Na tabela a seguir fornecemos a mesma lista de cores só que em ordem de código hexade-cimal:

    Nome HEX Cor

    Black  #000000  

    Navy  #000080  

    DarkBlue  #00008B  

    MediumBlue  #0000CD  

    Blue  #0000FF  

    DarkGreen  #006400  

    Green  #008000  

    Teal  #008080  

    DarkCyan  #008B8B  

    DeepSkyBlue  #00BFFF 

    DarkTurquoise  #00CED1 

    MediumSpringGreen  #00FA9A 

    Lime  #00FF00  

    SpringGreen  #00FF7F  

    Aqua  #00FFFF  

    Cyan  #00FFFF  

    MidnightBlue  #191970  

    DodgerBlue  #1E90FF  

    LightSeaGreen  #20B2AA  

    ForestGreen  #228B22  

    SeaGreen  #2E8B57  

    DarkSlateGray  #2F4F4F  

    DarkSlateGrey  #2F4F4F 

    LimeGreen  #32CD32  

    MediumSeaGreen  #3CB371 

    Turquoise  #40E0D0  

    RoyalBlue  #4169E1  

    SteelBlue  #4682B4  

    DarkSlateBlue  #483D8B  

    MediumTurquoise  #48D1CC  

    Indigo #4B0082  

    DarkOliveGreen  #556B2F 

    CadetBlue  #5F9EA0 

    CornflowerBlue  #6495ED  

    http://www.w3schools.com/tags/ref_color_tryit.asp?color=Violethttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Violethttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=EE82EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=EE82EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Wheathttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Wheathttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5DEB3http://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5DEB3http://www.w3schools.com/tags/ref_color_tryit.asp?color=Whitehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Whitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=WhiteSmokehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=WhiteSmokehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5F5F5http://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5F5F5http://www.w3schools.com/tags/ref_color_tryit.asp?color=Yellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Yellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFF00http://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=YellowGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=YellowGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9ACD32http://www.w3schools.com/tags/ref_color_tryit.asp?hex=9ACD32http://www.w3schools.com/tags/ref_color_tryit.asp?color=Blackhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Blackhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Navyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Navyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000080http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00008Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000CDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Bluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Bluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=006400http://www.w3schools.com/tags/ref_color_tryit.asp?color=Greenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Greenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Tealhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Tealhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008080http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008B8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00BFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00BFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00CED1http://www.w3schools.com/tags/ref_color_tryit.asp?hex=00CED1http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FA9Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FA9Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Limehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Limehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=SpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF7Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF7Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MidnightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MidnightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=191970http://www.w3schools.com/tags/ref_color_tryit.asp?color=DodgerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DodgerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=1E90FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=20B2AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=ForestGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=ForestGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=228B22http://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2E8B57http://www.w3schools.com/tags/ref_color_tryit.asp?hex=2E8B57http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LimeGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LimeGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=32CD32http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=3CB371http://www.w3schools.com/tags/ref_color_tryit.asp?hex=3CB371http://www.w3schools.com/tags/ref_color_tryit.asp?color=Turquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Turquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=40E0D0http://www.w3schools.com/tags/ref_color_tryit.asp?color=RoyalBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=RoyalBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4169E1http://www.w3schools.com/tags/ref_color_tryit.asp?color=SteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4682B4http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=483D8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=48D1CChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Indigohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4B0082http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOliveGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOliveGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=556B2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=556B2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CadetBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CadetBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=5F9EA0http://www.w3schools.com/tags/ref_color_tryit.asp?hex=5F9EA0http://www.w3schools.com/tags/ref_color_tryit.asp?color=CornflowerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CornflowerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6495EDhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=6495EDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=CornflowerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=5F9EA0http://www.w3schools.com/tags/ref_color_tryit.asp?color=CadetBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=556B2Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkOliveGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4B0082http://www.w3schools.com/tags/ref_color_tryit.asp?color=Indigohttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=48D1CChttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=483D8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4682B4http://www.w3schools.com/tags/ref_color_tryit.asp?color=SteelBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=4169E1http://www.w3schools.com/tags/ref_color_tryit.asp?color=RoyalBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=40E0D0http://www.w3schools.com/tags/ref_color_tryit.asp?color=Turquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=3CB371http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=32CD32http://www.w3schools.com/tags/ref_color_tryit.asp?color=LimeGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2F4F4Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkSlateGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=2E8B57http://www.w3schools.com/tags/ref_color_tryit.asp?color=SeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=228B22http://www.w3schools.com/tags/ref_color_tryit.asp?color=ForestGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=20B2AAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=LightSeaGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=1E90FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DodgerBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=191970http://www.w3schools.com/tags/ref_color_tryit.asp?color=MidnightBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Cyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Aquahttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF7Fhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=SpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=Limehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00FA9Ahttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumSpringGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00CED1http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkTurquoisehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00BFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DeepSkyBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008B8Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkCyanhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Tealhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=008000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Greenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=006400http://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000FFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Bluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=0000CDhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=00008Bhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DarkBluehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000080http://www.w3schools.com/tags/ref_color_tryit.asp?color=Navyhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=000000http://www.w3schools.com/tags/ref_color_tryit.asp?color=Blackhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=9ACD32http://www.w3schools.com/tags/ref_color_tryit.asp?color=YellowGreenhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFF00http://www.w3schools.com/tags/ref_color_tryit.asp?color=Yellowhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5F5F5http://www.w3schools.com/tags/ref_color_tryit.asp?color=WhiteSmokehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=FFFFFFhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Whitehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=F5DEB3http://www.w3schools.com/tags/ref_color_tryit.asp?color=Wheathttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=EE82EEhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=Violet

  • 8/19/2019 Instruções e Tabelas de cores HTML

    11/15

     

    Simulados & Tutoriais – Tutoriais HTML Pag. 11

    MediumAquaMarine  #66CDAA  

    DimGray  #696969  

    DimGrey  #696969  

    SlateBlue  #6A5ACD 

    OliveDrab  #6B8E23  

    SlateGray  #708090  SlateGrey  #708090  

    LightSlateGray  #778899  

    LightSlateGrey  #778899  

    MediumSlateBlue  #7B68EE  

    LawnGreen  #7CFC00 

    Chartreuse  #7FFF00  

    Aquamarine  #7FFFD4  

    Maroon  #800000  

    Purple  #800080  

    Olive  #808000  

    Gray  #808080  

    Grey  #808080  

    SkyBlue  #87CEEB 

    LightSkyBlue  #87CEFA 

    BlueViolet  #8A2BE2  

    DarkRed  #8B0000  

    DarkMagenta  #8B008B  

    SaddleBrown  #8B4513  

    DarkSeaGreen  #8FBC8F 

    LightGreen  #90EE90  

    MediumPurple  #9370DB  

    DarkViolet  #9400D3  

    PaleGreen  #98FB98  

    DarkOrchid  #9932CC  

    YellowGreen  #9ACD32 

    Sienna  #A0522D  

    Brown  #A52A2A  

    DarkGray  #A9A9A9 

    DarkGrey  #A9A9A9 

    LightBlue  #ADD8E6 

    GreenYellow  #ADFF2F  

    PaleTurquoise  #AFEEEE 

    LightSteelBlue  #B0C4DE 

    PowderBlue  #B0E0E6  

    FireBrick  #B22222  

    DarkGoldenRod  #B8860B  

    MediumOrchid  #BA55D3 

    RosyBrown  #BC8F8F 

    http://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumAquaMarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?color=MediumAquaMarinehttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=66CDAAhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGrayhttp://www.w3schools.com/tags/ref_color_tryit.asp?hex=696969http://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGreyhttp://www.w3schools.com/tags/ref_color_tryit.asp?color=DimGreyhttp://www