×

注意!页面内容来自https://www.w3schools.com/\colors/default.asp,本站不储存任何内容,为了更好的阅读体验进行在线解析,若有广告出现,请及时反馈。若您觉得侵犯了您的利益,请通知我们进行删除,然后访问 原网页

<> #subtopnav { position:fixed; background-color: #282A35; color:#f1f1f1; padding:0; letter-spacing:1px; font-family: 'Source Sans Pro Topnav'sans-serif; font-size:0; top:56px; z-index:2; width:100%; white-space:nowrap; overflow:auto; scrollbar-width: none; max-width:1750px; margin:auto; left:0; right:0; } #subtopnav a{ display:inline-block; width:auto; margin:0!important; padding:5px 15px 5px 15px !important; font-size:15px!important; text-decoration: none; line-height: 1.5; } #subtopnav a:hover,#subtopnav a:focus,#subtopnav a:active{ background-color:#000000 !important; color:#ffffff !important; } #subtopnav a.active{ background-color: #04AA6D!important; color:#fff!important; } #btn_container_subtopnav { position:fixed; right:0; top:56px; font-size:0; xxborder-left:10px solid rgba(404253,0.5); } #btn_container_subtopnav a{ line-height:1.3!important; padding-top:7px!important; padding-bottom:6px!important; font-size:15px; background-color:#282A35; } #scroll_left_btn { cursor:pointer; display:none; position:fixed; left:0; top:56px; font-size: 15px; xborder-right: 10px solid rgba(404253,0.5); xbackground: red; } #scroll_left_btn span { xbackground-color:#282A35; background: linear-gradient(to right#282A35 70%transparent 100%); display:block; padding-top:5px; padding-bottom:5px; } #scroll_left_btn span:hover { background: linear-gradient(to right#000 95%transparent 100%); } #scroll_right_btn { cursor:pointer; float:left; font-size:15px; xxbackground-color:#282A35; background: linear-gradient(to left#282A35 70%transparent 100%); padding-top:5px; padding-bottom:5px; } #scroll_right_btn:hover { background: linear-gradient(to left#000 95%transparent 100%); } #menubtn_container { position:fixed; left:0; top:56px; xborder-right:10px solid rgba(404253,0.5); height:33px; color:white; font-size:15px; } #menubtn_container span { background-color:#282A35; } #darkmodemenu { position:fixed!important; right:0;!important; } #subtopnav::-webkit-scrollbar { display:none!important; } @media screen and (max-width: 992px){ #subtopnav a.subtopnav_firstitem { margin-left:50px!important; } } #google_translate_element a{ font-size:13px!important; line-height: normal; } #google_translate_element a:hover{ background-color:#fff!important; color:#000!important; } <> .topnavcontainer { background-color: #282A35; width:100%; max-width:1750px; left:0; right:0; margin:auto; height:33px; top:56px; position:fixed; z-index:3; } #scroll_left_btn { cursor: pointer; display: none; position: fixed; left: auto; top: auto; font-size: 15px; } #scroll_right_btn { cursor: pointer; position: fixed; font-size: 15px; display:none; } .topnavbackground { background-color:#282A35; position:fixed; width:100%; height:33px; top:56px; } body.darkpagetheme .topnavbackgroundbody.darkpagetheme .topnavcontainerbody.darkpagetheme #subtopnav { background-color:rgb(13,23,33)!important } body.darkpagetheme #scroll_right_btn { background: linear-gradient(to leftrgb(13,23,33) 70%transparent 100%) } body.darkpagetheme #scroll_left_btn span { background: linear-gradient(to rightrgb(13,23,33) 70%transparent 100%) }
<> .belowtopnavcontainer { max-width:1750px; margin:auto; } .contentcontainer { background-color: #f5f6f7; } body.darkpagetheme .contentcontainer { background-color: #29353e; } #leftmenuinner {width:230px;} @media (max-width:992px) { #leftmenuinner {width:260px;} #sidenav{width:260px;} }

Colors Tutorial

Colors

Colors are displayed combining REDGREENand BLUE light.


Color Names

With CSScolors can be set by using color names:

Example

Color Name
 Red
 Yellow
 Cyan
 Blue
 Magenta
Try it Yourself »

CSS Color Values

With CSScolors can be specified in different ways:

  • By color names
  • As RGB values
  • As hexadecimal values
  • As HSL values (CSS3)
  • As HWB values (CSS4)
  • With the currentcolor keyword

RGB Colors

RGB color values are supported in all browsers.

An RGB color value is specified with: rgb( RED , GREEN , BLUE ).

Each parameter defines the intensity of the color as an integer between 0 and 255.

For examplergb(0,0,255) is rendered as blue because the blue parameter is set to its highest value (255) and the others are set to 0.

Example

Color RGB Color
  rgb(255,0,0) Red
  rgb(0,255,0) Green
  rgb(0,0,255) Blue
Try it Yourself »

Shades of gray are often defined using equal values for all the 3 light sources:

Example

Color RGB Color
  rgb(0,0,0) Black
  rgb(128,128,128) Gray
  rgb(255,255,255) White
Try it Yourself »


Hexadecimal Colors

Hexadecimal color values are also supported in all browsers.

A hexadecimal color is specified with: #RRGGBB.

RR (red)GG (green) and BB (blue) are hexadecimal integers between 00 and FF specifying the intensity of the color.

For example#0000FF is displayed as bluebecause the blue component is set to its highest value (FF) and the others are set to 00.

Example

Color HEX RGB Color
  #FF0000 rgb(255,0,0) Red
  #00FF00 rgb(0,255,0) Green
  #0000FF rgb(0,0,255) Blue
Try it Yourself »

Shades of gray are often defined using equal values for all the 3 light sources:

Example

Color HEX RGB Color
  #000000 rgb(0,0,0) Black
  #808080 rgb(128,128,128) Gray
  #FFFFFF rgb(255,255,255) White
Try it Yourself »

Upper Case or Lower Case?

You can use upper case or lower case letters to specify hexadecimal values.

Lower case are easier to write. Upper case are easier to read.


Color Names

CSS supports 140 standard color names.

In the next chapter you will find a complete alphabetical list of color names with hexadecimal values:

Color Name Hex Color
AliceBlue #F0F8FF  
AntiqueWhite #FAEBD7  
Aqua #00FFFF  
Aquamarine #7FFFD4  
Azure #F0FFFF  
Beige #F5F5DC  
Bisque #FFE4C4  

The currentcolor Keyword

The currentcolor keyword refers to the value of the color property of an element.

Example

The border color of the following <div> element will be bluebecause the text color of the <div> element is blue:

#myDIV {
  color: blue; /* Blue text color */
  border: 10px solid currentcolor; /* Blue border color */
}
Try it Yourself »

<> #wrappercontainer { width:100%; height:100px; background-color:red; position:relative; z-index:2; } #footerwrapper { background-color: #282A35; /* background-image:url('/images/background_in_space.webp'); background-repeat: repeat; background-position: right bottom;*/ } #spacemyfooter { padding:40px 80px 20px 80px; max-width:1500px; margin:auto; } .footerlinks_1 { width:auto; float:left; padding:40px 60px; color:#FFF4A3; font-family: Source Sans Prosans-serif; font-size:15px; } .footerlinks_1 .fa-logo { font-size:46px!important; color:#ddd; } .footerlinks_1:nth-child(1) { padding:30px 10px 30px 40px; } .footerlinks_1 a{ text-decoration:none; } .footerlinks_1 a:hover,.footerlinks_1 a:active{ text-decoration:underline; color:#FFF4A3; } .footerlinks_1 a:hover,.footerlinks_1 a:active{ text-decoration:underline; color:#FFF4A3!; } .footerlinks_1 a:hover i{ color:#FFF4A3!important; } .footerlinks_2 { width:auto; float:left; padding-left:90px; padding-right:135px; color:#ddd; font-family: Source Sans Prosans-serif; font-size:12px; line-height:15px; text-align:center; } .footerlinks_2:nth-child(4) { padding-right:0; } .footerlinks_2 h5 { margin-bottom:20px; } .footerlinks_2 a:visited,.footerlinks_2 a:link{ text-decoration:none; } .footerlinks_2 a:hover,.footerlinks_2 a:active{ color:#FFF4A3; } .footersome { padding:60px 40px 10px 40px; color:#ddd; font-size:20px; text-align:center; } .footersome a { margin-right:10px; } .footersome a:hover,.footersome a:active{ color:#FFF4A3; } .footersome .textlink { font-size:15px; text-decoration:none; } .footersome .textlink:active,.footersome .textlink:hover { text-decoration:underline; } .footertext { color:#ddd; font-size:12px; line-height:15px; text-align:center; } .footertext a:hover,.footertext a:active{ color:#FFF4A3; } @media screen and (max-width: 992px) { #wrappercontainer { z-index:0; } .footerlinks_1 { width:100%; margin:auto; float:none; text-align:center; padding:10px 20px!important; font-size:20px; } .footerlinks_1:nth-child(1) { padding:40px 20px; } .footerlinks_2 { width:100%; float:none; margin:auto; font-size:16px; line-height:20px; padding:0; } .footerlinks_2 h5 { font-size:26px; margin-top:40px; } .footertext { padding:0; } .footer-hide-special { display:none; } } /* @media screen and (max-width: 992px) { #footerwrapper { background-image:url('/images/background_in_space.webp'); background-color: #282A35; background-repeat: repeat; background-position: left top; } }*/
<> @media screen and (max-width: 1450px) { #spacemyfooter { max-width:1100px; } .footerlinks_1 { padding-left:30px; padding-right:30px; } .footerlinks_2 { padding-right:30px; } .footerlinks_2:nth-child(1) { padding-left:50px; } .footer-hide-special { display:none; } } @media screen and (max-width: 1100px) { #spacemyfooter { max-width:1000px; } .footerlinks_1 { padding-left:20px; padding-right:20px; } .footerlinks_2 { padding-right:20px; } .footerlinks_2:nth-child(1) { padding-left:20px; } }
<> /*Remove this after 20. April 2024*/ #err_message { padding:8px 16px 16px 40px; border-radius:5px; display:none; position:relative; background-color:#2D3748; color:#FFF4A3; font-family:'Source Sans Pro'sans-serif; } #err_message h2 { font-family:'Source Sans Pro'sans-serif; } #err_message p { color:#f1f1f1; } #err_message #close_err_message { position:absolute; right:0; top:0; font-size:20px; cursor:pointer; width:30px; height:30px; text-align:center; } #err_message #close_err_message:hover { background-color:#FFF4A3; color:#2D3748; border-radius:50% }
×

Contact Sales

If you want to use W3Schools services as an educational institutionteam or enterprisesend us an e-mail:
[email protected]

Report Error

If you want to report an erroror if you want to make a suggestionsend us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorialsreferencesand examples are constantly reviewed to avoid errorsbut we cannot warrant full correctness of all content. While using W3Schoolsyou agree to have read and accepted our terms of use, cookies and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.