颜色
React Native 中的组件是使用 JavaScript 进行样式化的。颜色属性通常与 Web 上的 CSS 工作方式相匹配。每个平台上关于颜色使用的一般指南如下:
颜色相关的 API
React Native 有几个颜色 API,旨在让您充分利用平台的设计和用户偏好。
- PlatformColor 允许您引用平台的颜色系统。
- DynamicColorIOS 是 iOS 特有的,可以让您指定在浅色或深色模式下使用哪些颜色。
颜色的表示形式
红-绿-蓝 (RGB)
React Native 支持 rgb() 和 rgba() 两种十六进制与函数方法
'#f0f'(#rgb)'#ff00ff'(#rrggbb)'rgb(255, 0, 255)''rgba(255, 255, 255, 1.0)'
色调-饱和度-亮度 (HSL)
也支持 hsl() 和 hsla() 函数方法:
'hsl(360, 100%, 100%)''hsla(360, 100%, 100%, 1.0)'
颜色值
React Native 还支持将颜色表示为int值(以 RGB 颜色模式):
0xff00ff00(0xrrggbbaa)
:::caution 注意 这看起来可能与 Android Color 的整数表示类似,但在 Android 上的值是以 SRGB 颜色模式(0xaarrggbb)存储的。 :::
全透明 transparent
全透明颜色值rgba(0,0,0,0) 有个单独的写法,和CSS3一致:
'transparent'
颜色名称
你还可以使用颜色名称来作为颜色值. React Native 遵循CSS3 规范:
:::info 信息 React Native 仅支持小写颜色名称。不支持大写颜色名称。 :::
- <ins style={{background: '#f0f8ff'}} className="color-box" /> aliceblue (
#f0f8ff) - <ins style={{background: '#faebd7'}} className="color-box" /> antiquewhite (
#faebd7) - <ins style={{background: '#00ffff'}} className="color-box" /> aqua (
#00ffff) - <ins style={{background: '#7fffd4'}} className="color-box" /> aquamarine (
#7fffd4) - <ins style={{background: '#f0ffff'}} className="color-box" /> azure (
#f0ffff) - <ins style={{background: '#f5f5dc'}} className="color-box" /> beige (
#f5f5dc) - <ins style={{background: '#ffe4c4'}} className="color-box" /> bisque (
#ffe4c4) - <ins style={{background: '#000000'}} className="color-box" /> black (
#000000) - <ins style={{background: '#ffebcd'}} className="color-box" /> blanchedalmond (
#ffebcd) - <ins style={{background: '#0000ff'}} className="color-box" /> blue (
#0000ff) - <ins style={{background: '#8a2be2'}} className="color-box" /> blueviolet (
#8a2be2) - <ins style={{background: '#a52a2a'}} className="color-box" /> brown (
#a52a2a) - <ins style={{background: '#deb887'}} className="color-box" /> burlywood (
#deb887) - <ins style={{background: '#5f9ea0'}} className="color-box" /> cadetblue (
#5f9ea0) - <ins style={{background: '#7fff00'}} className="color-box" /> chartreuse (
#7fff00) - <ins style={{background: '#d2691e'}} className="color-box" /> chocolate (
#d2691e) - <ins style={{background: '#ff7f50'}} className="color-box" /> coral (
#ff7f50) - <ins style={{background: '#6495ed'}} className="color-box" /> cornflowerblue (
#6495ed) - <ins style={{background: '#fff8dc'}} className="color-box" /> cornsilk (
#fff8dc) - <ins style={{background: '#dc143c'}} className="color-box" /> crimson (
#dc143c) - <ins style={{background: '#00ffff'}} className="color-box" /> cyan (
#00ffff) - <ins style={{background: '#00008b'}} className="color-box" /> darkblue (
#00008b) - <ins style={{background: '#008b8b'}} className="color-box" /> darkcyan (
#008b8b) - <ins style={{background: '#b8860b'}} className="color-box" /> darkgoldenrod (
#b8860b) - <ins style={{background: '#a9a9a9'}} className="color-box" /> darkgray (
#a9a9a9) - <ins style={{background: '#006400'}} className="color-box" /> darkgreen (
#006400) - <ins style={{background: '#a9a9a9'}} className="color-box" /> darkgrey (
#a9a9a9) - <ins style={{background: '#bdb76b'}} className="color-box" /> darkkhaki (
#bdb76b) - <ins style={{background: '#8b008b'}} className="color-box" /> darkmagenta (
#8b008b) - <ins style={{background: '#556b2f'}} className="color-box" /> darkolivegreen (
#556b2f) - <ins style={{background: '#ff8c00'}} className="color-box" /> darkorange (
#ff8c00) - <ins style={{background: '#9932cc'}} className="color-box" /> darkorchid (
#9932cc) - <ins style={{background: '#8b0000'}} className="color-box" /> darkred (
#8b0000) - <ins style={{background: '#e9967a'}} className="color-box" /> darksalmon (
#e9967a) - <ins style={{background: '#8fbc8f'}} className="color-box" /> darkseagreen (
#8fbc8f) - <ins style={{background: '#483d8b'}} className="color-box" /> darkslateblue (
#483d8b) - <ins style={{background: '#2f4f4f'}} className="color-box" /> darkslategrey (
#2f4f4f) - <ins style={{background: '#00ced1'}} className="color-box" /> darkturquoise (
#00ced1) - <ins style={{background: '#9400d3'}} className="color-box" /> darkviolet (
#9400d3) - <ins style={{background: '#ff1493'}} className="color-box" /> deeppink (
#ff1493) - <ins style={{background: '#00bfff'}} className="color-box" /> deepskyblue (
#00bfff) - <ins style={{background: '#696969'}} className="color-box" /> dimgray (
#696969) - <ins style={{background: '#696969'}} className="color-box" /> dimgrey (
#696969) - <ins style={{background: '#1e90ff'}} className="color-box" /> dodgerblue (
#1e90ff) - <ins style={{background: '#b22222'}} className="color-box" /> firebrick (
#b22222) - <ins style={{background: '#fffaf0'}} className="color-box" /> floralwhite (
#fffaf0) - <ins style={{background: '#228b22'}} className="color-box" /> forestgreen (
#228b22) - <ins style={{background: '#ff00ff'}} className="color-box" /> fuchsia (
#ff00ff) - <ins style={{background: '#dcdcdc'}} className="color-box" /> gainsboro (
#dcdcdc) - <ins style={{background: '#f8f8ff'}} className="color-box" /> ghostwhite (
#f8f8ff) - <ins style={{background: '#ffd700'}} className="color-box" /> gold (
#ffd700) - <ins style={{background: '#daa520'}} className="color-box" /> goldenrod (
#daa520) - <ins style={{background: '#808080'}} className="color-box" /> gray (
#808080) - <ins style={{background: '#008000'}} className="color-box" /> green (
#008000) - <ins style={{background: '#adff2f'}} className="color-box" /> greenyellow (
#adff2f) - <ins style={{background: '#808080'}} className="color-box" /> grey (
#808080) - <ins style={{background: '#f0fff0'}} className="color-box" /> honeydew (
#f0fff0) - <ins style={{background: '#ff69b4'}} className="color-box" /> hotpink (
#ff69b4) - <ins style={{background: '#cd5c5c'}} className="color-box" /> indianred (
#cd5c5c) - <ins style={{background: '#4b0082'}} className="color-box" /> indigo (
#4b0082) - <ins style={{background: '#fffff0'}} className="color-box" /> ivory (
#fffff0) - <ins style={{background: '#f0e68c'}} className="color-box" /> khaki (
#f0e68c) - <ins style={{background: '#e6e6fa'}} className="color-box" /> lavender (
#e6e6fa) - <ins style={{background: '#fff0f5'}} className="color-box" /> lavenderblush (
#fff0f5) - <ins style={{background: '#7cfc00'}} className="color-box" /> lawngreen (
#7cfc00) - <ins style={{background: '#fffacd'}} className="color-box" /> lemonchiffon (
#fffacd) - <ins style={{background: '#add8e6'}} className="color-box" /> lightblue (
#add8e6) - <ins style={{background: '#f08080'}} className="color-box" /> lightcoral (
#f08080) - <ins style={{background: '#e0ffff'}} className="color-box" /> lightcyan (
#e0ffff) - <ins style={{background: '#fafad2'}} className="color-box" /> lightgoldenrodyellow (
#fafad2) - <ins style={{background: '#d3d3d3'}} className="color-box" /> lightgray (
#d3d3d3) - <ins style={{background: '#90ee90'}} className="color-box" /> lightgreen (
#90ee90) - <ins style={{background: '#d3d3d3'}} className="color-box" /> lightgrey (
#d3d3d3) - <ins style={{background: '#ffb6c1'}} className="color-box" /> lightpink (
#ffb6c1) - <ins style={{background: '#ffa07a'}} className="color-box" /> lightsalmon (
#ffa07a) - <ins style={{background: '#20b2aa'}} className="color-box" /> lightseagreen (
#20b2aa) - <ins style={{background: '#87cefa'}} className="color-box" /> lightskyblue (
#87cefa) - <ins style={{background: '#778899'}} className="color-box" /> lightslategrey (
#778899) - <ins style={{background: '#b0c4de'}} className="color-box" /> lightsteelblue (
#b0c4de) - <ins style={{background: '#ffffe0'}} className="color-box" /> lightyellow (
#ffffe0) - <ins style={{background: '#00ff00'}} className="color-box" /> lime (
#00ff00) - <ins style={{background: '#32cd32'}} className="color-box" /> limegreen (
#32cd32) - <ins style={{background: '#faf0e6'}} className="color-box" /> linen (
#faf0e6) - <ins style={{background: '#ff00ff'}} className="color-box" /> magenta (
#ff00ff) - <ins style={{background: '#800000'}} className="color-box" /> maroon (
#800000) - <ins style={{background: '#66cdaa'}} className="color-box" /> mediumaquamarine (
#66cdaa) - <ins style={{background: '#0000cd'}} className="color-box" /> mediumblue (
#0000cd) - <ins style={{background: '#ba55d3'}} className="color-box" /> mediumorchid (
#ba55d3) - <ins style={{background: '#9370db'}} className="color-box" /> mediumpurple (
#9370db) - <ins style={{background: '#3cb371'}} className="color-box" /> mediumseagreen (
#3cb371) - <ins style={{background: '#7b68ee'}} className="color-box" /> mediumslateblue (
#7b68ee) - <ins style={{background: '#00fa9a'}} className="color-box" /> mediumspringgreen (
#00fa9a) - <ins style={{background: '#48d1cc'}} className="color-box" /> mediumturquoise (
#48d1cc) - <ins style={{background: '#c71585'}} className="color-box" /> mediumvioletred (
#c71585) - <ins style={{background: '#191970'}} className="color-box" /> midnightblue (
#191970) - <ins style={{background: '#f5fffa'}} className="color-box" /> mintcream (
#f5fffa) - <ins style={{background: '#ffe4e1'}} className="color-box" /> mistyrose (
#ffe4e1) - <ins style={{background: '#ffe4b5'}} className="color-box" /> moccasin (
#ffe4b5) - <ins style={{background: '#ffdead'}} className="color-box" /> navajowhite (
#ffdead) - <ins style={{background: '#000080'}} className="color-box" /> navy (
#000080) - <ins style={{background: '#fdf5e6'}} className="color-box" /> oldlace (
#fdf5e6) - <ins style={{background: '#808000'}} className="color-box" /> olive (
#808000) - <ins style={{background: '#6b8e23'}} className="color-box" /> olivedrab (
#6b8e23) - <ins style={{background: '#ffa500'}} className="color-box" /> orange (
#ffa500) - <ins style={{background: '#ff4500'}} className="color-box" /> orangered (
#ff4500) - <ins style={{background: '#da70d6'}} className="color-box" /> orchid (
#da70d6) - <ins style={{background: '#eee8aa'}} className="color-box" /> palegoldenrod (
#eee8aa) - <ins style={{background: '#98fb98'}} className="color-box" /> palegreen (
#98fb98) - <ins style={{background: '#afeeee'}} className="color-box" /> paleturquoise (
#afeeee) - <ins style={{background: '#db7093'}} className="color-box" /> palevioletred (
#db7093) - <ins style={{background: '#ffefd5'}} className="color-box" /> papayawhip (
#ffefd5) - <ins style={{background: '#ffdab9'}} className="color-box" /> peachpuff (
#ffdab9) - <ins style={{background: '#cd853f'}} className="color-box" /> peru (
#cd853f) - <ins style={{background: '#ffc0cb'}} className="color-box" /> pink (
#ffc0cb) - <ins style={{background: '#dda0dd'}} className="color-box" /> plum (
#dda0dd) - <ins style={{background: '#b0e0e6'}} className="color-box" /> powderblue (
#b0e0e6) - <ins style={{background: '#800080'}} className="color-box" /> purple (
#800080) - <ins style={{background: '#663399'}} className="color-box" /> rebeccapurple (
#663399) - <ins style={{background: '#ff0000'}} className="color-box" /> red (
#ff0000) - <ins style={{background: '#bc8f8f'}} className="color-box" /> rosybrown (
#bc8f8f) - <ins style={{background: '#4169e1'}} className="color-box" /> royalblue (
#4169e1) - <ins style={{background: '#8b4513'}} className="color-box" /> saddlebrown (
#8b4513) - <ins style={{background: '#fa8072'}} className="color-box" /> salmon (
#fa8072) - <ins style={{background: '#f4a460'}} className="color-box" /> sandybrown (
#f4a460) - <ins style={{background: '#2e8b57'}} className="color-box" /> seagreen (
#2e8b57) - <ins style={{background: '#fff5ee'}} className="color-box" /> seashell (
#fff5ee) - <ins style={{background: '#a0522d'}} className="color-box" /> sienna (
#a0522d) - <ins style={{background: '#c0c0c0'}} className="color-box" /> silver (
#c0c0c0) - <ins style={{background: '#87ceeb'}} className="color-box" /> skyblue (
#87ceeb) - <ins style={{background: '#6a5acd'}} className="color-box" /> slateblue (
#6a5acd) - <ins style={{background: '#708090'}} className="color-box" /> slategray (
#708090) - <ins style={{background: '#fffafa'}} className="color-box" /> snow (
#fffafa) - <ins style={{background: '#00ff7f'}} className="color-box" /> springgreen (
#00ff7f) - <ins style={{background: '#4682b4'}} className="color-box" /> steelblue (
#4682b4) - <ins style={{background: '#d2b48c'}} className="color-box" /> tan (
#d2b48c) - <ins style={{background: '#008080'}} className="color-box" /> teal (
#008080) - <ins style={{background: '#d8bfd8'}} className="color-box" /> thistle (
#d8bfd8) - <ins style={{background: '#ff6347'}} className="color-box" /> tomato (
#ff6347) - <ins style={{background: '#40e0d0'}} className="color-box" /> turquoise (
#40e0d0) - <ins style={{background: '#ee82ee'}} className="color-box" /> violet (
#ee82ee) - <ins style={{background: '#f5deb3'}} className="color-box" /> wheat (
#f5deb3) - <ins style={{background: '#ffffff'}} className="color-box" /> white (
#ffffff) - <ins style={{background: '#f5f5f5'}} className="color-box" /> whitesmoke (
#f5f5f5) - <ins style={{background: '#ffff00'}} className="color-box" /> yellow (
#ffff00) - <ins style={{background: '#9acd32'}} className="color-box" /> yellowgreen (
#9acd32)