Color Name in HTML plays a very important role in the web and application designing process. It helps to changes the look and feel of our website or application as well as it makes our application more attractive and interactive. There are various ways to define Color Names in HTML into the HTML coding format. one can use additional CSS properties to use it more effectively. We are able to use HTML color name at the page level by including it into the body part also able to set to individual color to the specific element. Color Name in HTML is purposely used for text color, background color, border color, shadows, gradients, and many more.
Syntax
- There are various ways we can use HTML colors. Let’s see one by one.
- The very basic use of HTML color is to apply it to the text. simply use as text color to showing text in different HTML colors.
1. Text Color Syntax
color : color_name;
Let’s see how this syntax will work,
<h4 id="Welcome-to-EDUBCA-h">Welcome to EDUBCA<h4></h4> </h4>
In the above example, it will show text Welcome to EDUBCA in a blue color like:
- With the help of HTML colors, it’s also possible to add them as a background color.
2. Background-color Syntax
background-color:color_name;
Let’s see how this syntax will work,
<p style="background-color:light-green;"></p>
The category houses all the Design information spreading across numerous subcategories in the Design course.
- It’s also possible to add a colored border around any text or element by using HTML color by using the following syntax:
3. Border color Syntax: border
value color_name;
Let’s see how this syntax will work,
<h4 id="EDUCBA-free-certification-course"> EDUCBA free certification course </h4>
Types of the Color Name in HTML
There are different ways to define the color names in HTML. It’s difficult to remember a different name in different colors. So it’s to be decided to give some values to different colors. Let’s see one by one.
1. RGB Value
- It is one of the ways to define HTML color names in the combination of Red, Green and Blue color format values. Which is used to define color intensity between the number 0 to 255?
- If we want to define a black color using an RGB combination, it will like RGB(0,0,0). Here all parameters of color will set to 0. So it will display a black color.
- Like another RGB(0,0,255) will display color blue, due to 255 is set as the highest value to blue and the other is 0.
- If we are going to 3 equal values of RGB, then it will generate shades of a gray color.
Example: RGB (0,0,0) for darkest color where RGB(255,255,255) for lightest color.
2. HEX Value
- It’s one of the most commonly used formats of a color name in HTML in which color name will be defined in the format of a hexadecimal value.
- #rrggbb format includes values from RR for red, gg for green and bb for blue are placed in between 00 toff hexadecimal value.
- Let’s consider one example defining color #00ff00 . These values will be generated color green because of green containing the highest value(ff) where the other is set to 00.
3. HSL Value
- Another format to define HTML color in the form of Hue, Saturation, Lightness.
- Now we will see all the terms one by one. Hue is defined as the degree of color between 0 to 360 . 0 for red, 120 for green and 240 for blue.
- Saturation defines the value of color into the percentage, in which 0% says the shade of grey where 100% for full color.
- Lightness is also working as the percentage, which defines 0% for black, 50% is for neither light or dark where 100% is for white.
4. RGBA value
- This type of HTML color defines an extension for RGB color, including alpha value where alpha is used to define the opacity of the color.
- Alpha value comes in between 0.0 {fully transparent} to 1.0 {not transparent at all}
- Example is rgba(255,99,71,0)
5. HSLA Value
- It works the same as HSL colors value additional alpha value for defining the opacity of the color.
- hsla(8,100%,80%,0) for fully transparent color.
- hsla(8,100%,80%,0.9) for not that much transparent color.
Using HTML Color Names
Implementing colors on your webpage is easy and can be done both inline and via a separate CSS Stylesheet.
When you are going to be using the same HTML Color Names on a page multiple times, it is a better idea to use CSS Sheet to define and set colors. Conversely, if you only have to use color once or twice, using the inline method is considered better.
1. Using HTML Color Inline
<h3 id="Brown-H-Heading">Brown H3 Heading</h3> <p style="color: Gainsboro">Gainsboro colored paragraph text</p>
2. Implementing in CSS
h1 { color: Brown; } p { color: Gainsboro; }
Different HTML Color Codes
Colors can be denoted by using their hex value or their name. HTML has support for the most common colors; in this article, I will share with you 140 names and hex values of these colors. One thing to keep in mind is that you don’t have to limit yourself to these colors; you can use any color picker tool to find the Hex value of any color you want and use it on your web page.
Now that you know what HTML Color Names are and how you can use them in your pages, here is a list of Color names with appropriate color codes:
1. Grey and Black HTML Color Names
Grey and Black colors are, in most cases, perfect for the text color of the page as against a white background; these colors have the best readability. One interesting thing to keep in mind is that modern phones with OLED displays done need any battery power to display Black color; if your audience is going to be on mobile, it is a wise idea to use Black as a background color and white or other light colors as the foreground color.
Code | Color |
#000000 | Black |
#0C090A | Night |
#2C3539 | Gunmetal |
#2B1B17 | Midnight |
#34282C | Charcoal |
#25383C | Dark Slate Grey |
#3B3131 | Oil |
#413839 | Black Cat |
#3D3C3A | Iridium |
#463E3F | Black Eel |
#4C4646 | Black Cow |
#504A4B | Gray Wolf |
#565051 | Vampire Gray |
#5C5858 | Gray Dolphin |
#625D5D | Carbon Gray |
#666362 | Ash Gray |
#6D6968 | Cloudy Gray |
#726E6D | Smokey Gray |
#736F6E | Gray |
#837E7C | Granite |
#848482 | Battleship Gray |
#B6B6B4 | Gray Cloud |
#D1D0CE | Gray Goose |
#E5E4E2 | Platinum |
#BCC6CC | Metallic Silver |
#98AFC7 | Blue Gray |
#6D7B8D | Light Slate Gray |
#657383 | Slate Gray |
#616D7E | Jet Gray |
2. Blue HTML Color Names
Blue underlined text is considered as a Link as it is the default link style for most web browsers, you should avoid using blue for all text on a page as visitors can mistake it for hyperlinks.
#646D7E | Mist Blue |
#566D7E | Marble Blue |
#737CA1 | Slate Blue |
#4863A0 | Steel Blue |
#2B547E | Blue Jay |
#2B3856 | Dark Slate Blue |
#151B54 | Midnight Blue |
#000080 | Navy Blue |
#342D7E | Blue Whale |
#15317E | Lapis Blue |
#151B8D | Denim Dark Blue |
#0000A0 | Earth Blue |
#0020C2 | Cobalt Blue |
#0041C2 | Blueberry Blue |
#2554C7 | Sapphire Blue |
#1569C7 | Blue Eyes |
#2B60DE | Royal Blue |
#1F45FC | Blue Orchid |
#6960EC | Blue Lotus |
#736AFF | Light Slate Blue |
#357EC7 | Windows Blue |
#368BC1 | Glacial Blue Ice |
#488AC7 | Silk Blue |
#3090C7 | Blue Ivy |
#659EC7 | Blue Koi |
#87AFC7 | Columbia Blue |
#95B9C7 | Baby Blue |
#728FCE | Light Steel Blue |
#2B65EC | Ocean Blue |
#306EFF | Blue Ribbon |
#157DEC | Blue Dress |
#1589FF | Dodger Blue |
#6495ED | Cornflower Blue |
#6698FF | Sky Blue |
#38ACEC | Butterfly Blue |
#56A5EC | Iceberg |
#5CB3FF | Crystal Blue |
#3BB9FF | Deep Sky Blue |
#79BAEC | Denim Blue |
#82CAFA | Light Sky Blue |
#82CAFF | Day Sky Blue |
#A0CFEC | Jeans Blue |
#B7CEEC | Blue Angel |
#B4CFEC | Pastel Blue |
#C2DFFF | Sea Blue |
#C6DEFF | Powder Blue |
#AFDCEC | Coral Blue |
#ADDFFF | Light Blue |
#BDEDFF | Robin Egg Blue |
#CFECEC | Pale Blue Lily |
#E0FFFF | Light Cyan |
#EBF4FA | Water |
#F0F8FF | AliceBlue |
#F0FFFF | Azure |
#CCFFFF | Light Slate |
#93FFE8 | Light Aquamarine |
#9AFEFF | Electric Blue |
#7FFFD4 | Aquamarine |
#00FFFF | Cyan or Aqua |
#7DFDFE | Tron Blue |
#57FEFF | Blue Zircon |
#8EEBEC | Blue Lagoon |
#50EBEC | Celeste |
#4EE2EC | Blue Diamond |
#81D8D0 | Tiffany Blue |
#92C7C7 | Cyan Opaque |
#77BFC7 | Blue Hosta |
#78C7C7 | Northern Lights Blue |
#48CCCD | Medium Turquoise |
#43C6DB | Turquoise |
#46C7C7 | Jellyfish |
#7BCCB5 | Blue green |
3.緑の HTML カラー
自然、お金、環境などに関連するサイトでは、背景として緑を使用するのが良い色です。
#43BFC7 | Macaw Blue Green |
#3EA99F | Light Sea Green |
#3B9C9C | Dark Turquoise |
#438D80 | Sea Turtle Green |
#348781 | Medium Aquamarine |
#307D7E | Greenish Blue |
#5E7D7E | Grayish Turquoise |
#4C787E | Beetle Green |
#008080 | Teal |
#4E8975 | Sea Green |
#78866B | Camouflage Green |
#848b79 | Sage Green |
#617C58 | Hazel Green |
#728C00 | Venom Green |
#667C26 | Fern Green |
#254117 | Dark Forest Green |
#306754 | Medium Sea Green |
#347235 | Medium Forest Green |
#437C17 | Seaweed Green |
#387C44 | Pine Green |
#347C2C | Jungle Green |
#347C17 | Shamrock Green |
#348017 | Medium Spring Green |
#4E9258 | Forest Green |
#6AA121 | Green Onion |
#4AA02C | Spring Green |
#41A317 | Lime Green |
#3EA055 | Clover Green |
#6CBB3C | Green Snake |
#6CC417 | Alien Green |
#4CC417 | Green Apple |
#52D017 | Yellow Green |
#4CC552 | Kelly Green |
#54C571 | Zombie Green |
#99C68E | Frog Green |
#89C35C | Green Peas |
#85BB65 | Dollar Bill Green |
#8BB381 | Dark Sea Green |
#9CB071 | Iguana Green |
#B2C248 | Avocado Green |
#9DC209 | Pistachio Green |
#A1C935 | Salad Green |
#7FE817 | Hummingbird Green |
#59E817 | Nebula Green |
#57E964 | Stoplight Go Green |
#64E986 | Algae Green |
#5EFB6E | Jade Green |
#00FF00 | Green |
#5FFB17 | Emerald Green |
#87F717 | Lawn Green |
#8AFB17 | Chartreuse |
#6AFB92 | Dragon Green |
#98FF98 | Mint green |
#B5EAAA | Green Thumb |
#C3FDB8 | Light Jade |
#CCFB5D | Tea Green |
#B1FB17 | Green Yellow |
#BCE954 | Slime Green |
#EDDA74 | Goldenrod |
#EDE275 | Harvest Gold |
#FFE87C | Sun Yellow |
4.黄色の HTML の色の名前
黄色は、ページ内で深刻でない雰囲気を設定し、創造性と楽観主義を示すために使用できます。黄色はテキストの色よりも背景として適していることに注意してください。
#FFFF00 | Yellow |
#FFF380 | Corn Yellow |
#FFFFC2 | Parchment |
#FFFFCC | Cream |
#FFF8C6 | Lemon Chiffon |
#FFF8DC | Cornsilk |
#F5F5DC | Beige |
#FBF6D9 | Blonde |
#FAEBD7 | AntiqueWhite |
#F7E7CE | Champagne |
#FFEBCD | BlanchedAlmond |
#F3E5AB | Vanilla |
#ECE5B6 | Tan Brown |
#FFE5B4 | Peach |
#FFDB58 | Mustard |
#FFD801 | Rubber Ducky Yellow |
#FDD017 | Bright Gold |
#EAC117 | Golden brown |
#F2BB66 | Macaroni and Cheese |
#FBB917 | Saffron |
#FBB117 | Beer |
#FFA62F | Cantaloupe |
#E9AB17 | Bee Yellow |
5.茶色の HTML カラー
茶色の背景では、白または黒のテキストが読みにくくなる場合があります。茶色の色合いに対してコントラストの良い他の色を使用することもできます。
#E2A76F | Brown Sugar |
#DEB887 | BurlyWood |
#FFCBA4 | Deep Peach |
#C9BE62 | Ginger Brown |
#E8A317 | School Bus Yellow |
#EE9A4D | Sandy Brown |
#C8B560 | Fall Leaf Brown |
#D4A017 | Orange Gold |
#C2B280 | Sand |
#C7A317 | Cookie Brown |
#C68E17 | Caramel |
#B5A642 | Brass |
#ADA96E | Khaki |
#C19A6B | Camel brown |
#CD7F32 | Bronze |
#C88141 | Tiger Orange |
#C58917 | Cinnamon |
#AF9B60 | Bullet Shell |
#AF7817 | Dark Goldenrod |
#B87333 | Copper |
#966F33 | Wood |
#806517 | Oak Brown |
#827839 | Moccasin |
#827B60 | Army Brown |
#786D5F | Sandstone |
#493D26 | Mocha |
#483C32 | Taupe |
#6F4E37 | Coffee |
#835C3B | Brown Bear |
#7F5217 | Red Dirt |
#7F462C | Sepia |
6.オレンジ色の HTML カラー
オレンジは、背景として色を使用するときにポイントを強調するのに最適で、安っぽくなりすぎずに熱意と暖かさの感覚を呼び起こすことができます。オレンジ色の HTML カラー
#C47451 | Orange Salmon |
#C36241 | Rust |
#C35817 | Red Fox |
#C85A17 | Chocolate |
#CC6600 | Sedona |
#E56717 | Papaya Orange |
#E66C2C | Halloween Orange |
#F87217 | Pumpkin Orange |
#F87431 | Construction Cone Orange |
#E67451 | Sunrise Orange |
#FF8040 | Mango Orange |
#F88017 | Dark Orange |
#FF7F50 | Coral |
#F88158 | Basket Ball Orange |
#F9966B | Light Salmon |
#E78A61 | Tangerine |
#E18B6B | Dark Salmon |
#E77471 | Light Coral |
#F75D59 | Bean Red |
#E55451 | Valentine Red |
#E55B3C | Shocking Orange |
7.赤の HTML カラーコード
一部のブラウザでは、赤い下線付きのテキストが訪問済みリンクとして使用されます。訪問者を混乱させないために、使用を避ける必要があります。
#FF0000 | Red |
#FF2400 | Scarlet |
#F62217 | Ruby Red |
#F70D1A | Ferrari Red |
#F62817 | Fire Engine Red |
#E42217 | Lava Red |
#E41B17 | Love Red |
#DC381F | Grapefruit |
#C34A2C | Chestnut Red |
#C24641 | Cherry Red |
#C04000 | Mahogany |
#C11B17 | Chilli Pepper |
#9F000F | Cranberry |
#990012 | Red Wine |
#8C001A | Burgundy |
#954535 | Chestnut |
#7E3517 | Blood Red |
#8A4117 | Sienna |
#7E3817 | Sangria |
#800517 | Firebrick |
#810541 | Maroon |
#7D0541 | Plum Pie |
#7E354D | Velvet Maroon |
#7D0552 | Plum Velvet |
#7F4E52 | Rosy Finch |
#7F5A58 | Puce |
#7F525D | Dull Purple |
#B38481 | Rosy Brown |
#C5908E | Khaki Rose |
8.ピンクの HTML カラーコード
色彩科学によると、訪問者の潜在意識に自信、洗練さ、暖かさを感じてもらいたい場合は、ピンクとその色合いを使用するとよいとされています。
#C48189 | Pink Bow |
#C48793 | Lipstick Pink |
#E8ADAA | Rose |
#ECC5C0 | Rose Gold |
#EDC9AF | Desert Sand |
#FDD7E4 | Pig Pink |
#FCDFFF | Cotton Candy |
#FFDFDD | Pink Bubble Gum |
#FBBBB9 | Misty Rose |
#FAAFBE | Pink |
#FAAFBA | Light Pink |
#F9A7B0 | Flamingo Pink |
#E7A1B0 | Pink Rose |
#E799A3 | Pink Daisy |
#E38AAE | Cadillac Pink |
#F778A1 | Carnation Pink |
#E56E94 | Blush Red |
#F660AB | Hot Pink |
#FC6C85 | Watermelon Pink |
#F6358A | Violet Red |
#F52887 | Deep Pink |
#E45E9D | Pink Cupcake |
#E4287C | Pink Lemonade |
#F535AA | Neon Pink |
#FF00FF | Magenta |
#E3319D | Dimorphotheca Magenta |
#F433FF | Bright Neon Pink |
#D16587 | Pale Violet Red |
#C25A7C | Tulip Pink |
#CA226B | Medium Violet Red |
#C12869 | Rogue Pink |
#C12267 | Burnt Pink |
#C25283 | Bashful Pink |
#C12283 | Dark Carnation Pink |
#B93B8F | Plum |
9.紫と白の HTML カラーコード
白の背景に対して白のテキストの色を使用すると、ユーザーが読みにくくなり、ユーザーフレンドリーではないだけでなく、サイトに SEO ペナルティが課される可能性があるため、常に暗い背景に対して白やその他の明るい色を使用してください。
#7E587E | Viola Purple |
#571B7E | Purple Iris |
#583759 | Plum Purple |
#4B0082 | Indigo |
#461B7E | Purple Monster |
#4E387E | Purple Haze |
#614051 | Eggplant |
#5E5A80 | Grape |
#6A287E | Purple Jam |
#7D1B7E | Dark Orchid |
#A74AC7 | Purple Flower |
#B048B5 | Medium Orchid |
#6C2DC7 | Purple Amethyst |
#842DCE | Dark Violet |
#8D38C9 | Violet |
#7A5DC7 | Purple Sage Bush |
#7F38EC | Lovely Purple |
#8E35EF | Purple |
#893BFF | Aztech Purple |
#8467D7 | Medium Purple |
#A23BEC | Jasmine Purple |
#B041FF | Purple Daffodil |
#C45AEC | Tyrian Purple |
#9172EC | Crocus Purple |
#9E7BFF | Purple Mimosa |
#D462FF | Heliotrope Purple |
#E238EC | Crimson |
#C38EC7 | Purple Dragon |
#C8A2C8 | Lilac |
#E6A9EC | Blush Pink |
#E0B0FF | Mauve |
#C6AEC7 | Wisteria Purple |
#F9B7FF | Blossom Pink |
#D2B9D3 | Thistle |
#E9CFEC | Periwinkle |
#EBDDE2 | Lavender Pinocchio |
#E3E4FA | Lavender blue |
#FDEEF4 | Pearl |
#FFF5EE | SeaShell |
#FEFCFF | Milk White |
#FFFFFF | White |
最もよく使用される HTML カラーコードのいくつか
これらは、ウェブで使用される人気のある色の一部です。これらをすぐに見つけられるように、別の表にまとめました。
Red | #FF0000 | White | #FFFFFF |
Cyan | #00FFFF | Silver | #C0C0C0 |
Blue | #0000FF | Gray or Grey | #808080 |
DarkBlue | #0000A0 | Black | #000000 |
LightBlue | #ADD8E6 | Orange | #FFA500 |
Purple | #800080 | Brown | #A52A2A |
Yellow | #FFFF00 | Maroon | #800000 |
Lime | #00FF00 | Green | #008000 |
Magenta | #FF00FF | Olive | #808000 |
Examples of Color Name in HTML
Let us see how color name in HTML is used with the help of some examples mentioned below:
Example #1
Let us consider a general example showing how example color name in HTML is going to be used:
HTML code:
<h1 id="About-Life">About Life.....</h1> <h4 id="Creativity-Is-Intelligence-Having-Fun">Creativity Is Intelligence Having Fun </h4> <p style="background-color: #00FFFF; color:blue"></p>
You Learn More From Failure Than From Success. Don’t Let It Stop You. Failure Builds Character. If You Are Working On Something That You Really Care About, You Don’t Have To Be Pushed. The Vision Pulls You
Output:
Example #2
Now we are taking another example which will define all types of HTML color as follows:
HTML code:
<h1 id="RGB-defines-Red-color">RGB defines Red color</h1> <h1 id="RGB-same-values-define-Gray-shade">RGB same values define Gray shade</h1> <h1 id="New-color-using-Hex-Value">New color using Hex Value</h1> <h1 id="Shade-of-Gray">Shade of Gray</h1> <h1 id="hsl-color-shade">hsl color shade</h1> <h1 id="rgba-color-shade">rgba color shade</h1> <h1 id="hsla-color-shade">hsla color shade</h1>
Output:
In the above example, we are able to see the use of different HTML color types and how they are named in HTML.
Example #3
One more use of HTML color is to define a border to the element, which is as follows:
In Example, Here, we can add a border to your code body, changing the background and text colour.
HTML code:
<p style="border: 2px solid #A52A2A; background-color:#ffa500;color:#FFF8DC">Self-actualizing theory talks of intrinsic rewards inherent in the task performance such as job satisfaction, feeling of achievement, etc.</p>
Output:
Conclusion
We came across that HTML colors are defined with different names, percentage value, Hex value, alpha value, and many more. Color name in HTML is used to do color for text, for background, for a border, for gradations. Different types define HTML color name as RGB, hex, hsl, rgba, hsla.
The above is the detailed content of Color Name in HTML. For more information, please follow other related articles on the PHP Chinese website!

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Atom editor mac version download
The most popular open source editor

Dreamweaver CS6
Visual web development tools

Dreamweaver Mac version
Visual web development tools