lightgreen(浅绿)#90ee90 lightgrey(浅灰)#d3d3d3 lightpink(淡粉)#ffb6c1 lightsalmon(浅肉色)#ffa07a lightseagreen(浅海绿)#20b2aa lightskyblue(浅天蓝)#87cefa lightslategray(浅青灰)#778899 lightslategrey(浅青灰)#778899 lightsteelblue(浅钢蓝)#b0c4de lightyellow(浅黄)#ffffe0 limegreen(酸橙绿)#32...
lightyellow #FFFFE0 顏色名稱 代碼 顏色 darkslategray #2F4F4F darkolivegreen #556B2F olive #808000 darkgreen #006400 forestgreen #228B22 seagreen #2E8B57 green(teal) #008080 lightseagreen #20B2AA madiumaquamarine #66CDAA mediumseagreen #3CB371 darkseagreen #8FBC8F yellow...
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...
Shades of GrayGray colors are displayed using an equal amount of power to all of the light sources. To make it easier for you to select the right gray color we have compiled a table of gray shades for you:Gray ShadesHEXRGB #000000 rgb(0,0,0) #080808 rgb(8,8,8) #101010 rgb(...
DOCTYPEhtml><html><head><title>Color Code</title></head><style>.header{text-align:center;color:#808080;/* gray color */}.p1{color:#000000;/* black color */border:2px solid;padding:5px;text-align:justify;}.p2{color:#FFA500;/* orange color */border:2px solid;padding:5px;text-...
这里将 color-change 动画应用到了一个 div 元素上。animation-duration 属性定义了动画的持续时间,animation-iteration-count 属性定义了动画的迭代次数(infinite 表示无限次)。 这样,div 元素的背景颜色就会从红色渐变到蓝色,然后再从蓝色渐变回红色,如此循环往复。
Also, below are quick code examples of using CSS to apply this color to various HTML elements. Text/Foreground Color Background Color .myExample{ background-color:grey; } You can also use it with thebackgroundshorthand property, like this: ...
background-color: yellow; } 1. 2. 3. 4. <p class="highlight">这段文字会变成黄色背景。</p> 1. 1.3 ID选择器 ID选择器以#开头,后面紧跟ID名。每个ID在文档中应是唯一的。 /* 为ID为'main-title'的元素设置字号 */ #main-title { ...
color-scheme有两种用法,先来看第一种: :root { color-scheme: dark light; } 在:root元素上,使用color-scheme颜色方案进行渲染,会影响画布的表面颜色(即全局背景颜色),color属性的初始值和系统颜色的使用值,还应该影响视窗滚动条颜色。 另外一种使用方式是在标签上: <meta name="color-scheme" content="...
使用color-scheme属性指定颜色方案,比如color: buttonface; color-scheme: light;。 使用mix()函数来混合两个颜色,比如color: mix(red, yellow, 50%);。 使用contrast()函数来计算颜色和背景色的对比度,比如background-color: #333; color: contrast(#333, white, black);。