首页 > 代码库 > 色彩的表示

色彩的表示

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title></title>
 </head>
 <body>
 <pre>
  1、颜色是由数字来表示
  2、颜色由3原色组成,红red、绿green、蓝blue、   RGB
  3、3原色各在[0-255]之间变化
  综上:本质是组合3原色
  1、用16进制组合[0-255],[00,ff],<span style="color:#234567">#234567</span>
  2、用10进制来组合,如<span style="color:rgb(240,23,45)">rgb(240,23,45)</span>
  3、html提供常用颜色的名称如:<span style="color:orange">orange</span>,<span style="color:pink">pink</span>,<span style="color:purple">purple</span>,<span style="color:red">red</span>
 </pre>
 </body>
</html>

 

表示颜色的字符在六个一样的情况下可以简写如:

<p style="color:#eeeeee"></p>
<p style="color:#eee"></p>

本文出自 “别闹好好的” 博客,转载请与作者联系!

色彩的表示