File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,27 @@ React Native supports `rgb()` and `rgba()` in both hexadecimal and functional no
26
26
- ` '#f0ff' ` (#rgba)
27
27
- ` '#ff00ff00' ` (#rrggbbaa)
28
28
- ` 'rgb(255, 0, 255)' `
29
+ - ` 'rgb(255 0 255)' `
29
30
- ` 'rgba(255, 0, 255, 1.0)' `
31
+ - ` 'rgba(255 0 255 / 1.0)' `
30
32
31
33
### Hue Saturation Lightness (HSL)
32
34
33
35
React Native supports ` hsl() ` and ` hsla() ` in functional notation:
34
36
35
37
- ` 'hsl(360, 100%, 100%)' `
38
+ - ` 'hsl(360 100% 100%)' `
36
39
- ` 'hsla(360, 100%, 100%, 1.0)' `
40
+ - ` 'hsla(360 100% 100% / 1.0)' `
41
+
42
+ ### Hue Whiteness Blackness (HWB)
43
+
44
+ React Native supports ` hwb() ` in functional notation:
45
+
46
+ - ` 'hwb(0, 0%, 100%)' `
47
+ - ` 'hwb(360, 100%, 100%)' `
48
+ - ` 'hwb(0 0% 0%)' `
49
+ - ` 'hwb(70 50% 0%)' `
37
50
38
51
### Color ints
39
52
You can’t perform that action at this time.
0 commit comments