-
Notifications
You must be signed in to change notification settings - Fork 182
/
webCustomData.ts
26725 lines (26723 loc) · 671 KB
/
webCustomData.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// file generated from @vscode/web-custom-data NPM package
import { CSSDataV1 } from '../cssLanguageTypes';
export const cssData : CSSDataV1 = {
"version": 1.1,
"properties": [
{
"name": "additive-symbols",
"browsers": [
"FF33"
],
"atRule": "@counter-style",
"syntax": "[ <integer> && <symbol> ]#",
"relevance": 50,
"description": "@counter-style descriptor. Specifies the symbols used by the marker-construction algorithm specified by the system descriptor. Needs to be specified if the counter system is 'additive'.",
"restrictions": [
"integer",
"string",
"image",
"identifier"
]
},
{
"name": "align-content",
"browsers": [
"E12",
"FF28",
"S9",
"C29",
"IE11",
"O16"
],
"values": [
{
"name": "center",
"description": "Lines are packed toward the center of the flex container."
},
{
"name": "flex-end",
"description": "Lines are packed toward the end of the flex container."
},
{
"name": "flex-start",
"description": "Lines are packed toward the start of the flex container."
},
{
"name": "space-around",
"description": "Lines are evenly distributed in the flex container, with half-size spaces on either end."
},
{
"name": "space-between",
"description": "Lines are evenly distributed in the flex container."
},
{
"name": "stretch",
"description": "Lines stretch to take up the remaining space."
},
{
"name": "start"
},
{
"name": "end"
},
{
"name": "normal"
},
{
"name": "baseline"
},
{
"name": "first baseline"
},
{
"name": "last baseline"
},
{
"name": "space-around"
},
{
"name": "space-between"
},
{
"name": "space-evenly"
},
{
"name": "stretch"
},
{
"name": "safe"
},
{
"name": "unsafe"
}
],
"syntax": "normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>",
"relevance": 66,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/align-content"
}
],
"description": "Aligns a flex container's lines within the flex container when there is extra space in the cross-axis, similar to how 'justify-content' aligns individual items within the main-axis.",
"restrictions": [
"enum"
]
},
{
"name": "align-items",
"browsers": [
"E12",
"FF20",
"S9",
"C29",
"IE11",
"O16"
],
"values": [
{
"name": "baseline",
"description": "If the flex item's inline axis is the same as the cross axis, this value is identical to 'flex-start'. Otherwise, it participates in baseline alignment."
},
{
"name": "center",
"description": "The flex item's margin box is centered in the cross axis within the line."
},
{
"name": "flex-end",
"description": "The cross-end margin edge of the flex item is placed flush with the cross-end edge of the line."
},
{
"name": "flex-start",
"description": "The cross-start margin edge of the flex item is placed flush with the cross-start edge of the line."
},
{
"name": "stretch",
"description": "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."
},
{
"name": "normal"
},
{
"name": "start"
},
{
"name": "end"
},
{
"name": "self-start"
},
{
"name": "self-end"
},
{
"name": "first baseline"
},
{
"name": "last baseline"
},
{
"name": "stretch"
},
{
"name": "safe"
},
{
"name": "unsafe"
}
],
"syntax": "normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]",
"relevance": 87,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/align-items"
}
],
"description": "Aligns flex items along the cross axis of the current line of the flex container.",
"restrictions": [
"enum"
]
},
{
"name": "justify-items",
"browsers": [
"E12",
"FF20",
"S9",
"C52",
"IE11",
"O12.1"
],
"values": [
{
"name": "auto"
},
{
"name": "normal"
},
{
"name": "end"
},
{
"name": "start"
},
{
"name": "flex-end",
"description": "\"Flex items are packed toward the end of the line.\""
},
{
"name": "flex-start",
"description": "\"Flex items are packed toward the start of the line.\""
},
{
"name": "self-end",
"description": "The item is packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis."
},
{
"name": "self-start",
"description": "The item is packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.."
},
{
"name": "center",
"description": "The items are packed flush to each other toward the center of the of the alignment container."
},
{
"name": "left"
},
{
"name": "right"
},
{
"name": "baseline"
},
{
"name": "first baseline"
},
{
"name": "last baseline"
},
{
"name": "stretch",
"description": "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."
},
{
"name": "safe"
},
{
"name": "unsafe"
},
{
"name": "legacy"
}
],
"syntax": "normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]",
"relevance": 56,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/justify-items"
}
],
"description": "Defines the default justify-self for all items of the box, giving them the default way of justifying each box along the appropriate axis",
"restrictions": [
"enum"
]
},
{
"name": "justify-self",
"browsers": [
"E16",
"FF45",
"S10.1",
"C57",
"IE10",
"O44"
],
"values": [
{
"name": "auto"
},
{
"name": "normal"
},
{
"name": "end"
},
{
"name": "start"
},
{
"name": "flex-end",
"description": "\"Flex items are packed toward the end of the line.\""
},
{
"name": "flex-start",
"description": "\"Flex items are packed toward the start of the line.\""
},
{
"name": "self-end",
"description": "The item is packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis."
},
{
"name": "self-start",
"description": "The item is packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.."
},
{
"name": "center",
"description": "The items are packed flush to each other toward the center of the of the alignment container."
},
{
"name": "left"
},
{
"name": "right"
},
{
"name": "baseline"
},
{
"name": "first baseline"
},
{
"name": "last baseline"
},
{
"name": "stretch",
"description": "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."
},
{
"name": "save"
},
{
"name": "unsave"
}
],
"syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]",
"relevance": 55,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/justify-self"
}
],
"description": "Defines the way of justifying a box inside its container along the appropriate axis.",
"restrictions": [
"enum"
]
},
{
"name": "align-self",
"browsers": [
"E12",
"FF20",
"S9",
"C29",
"IE10",
"O12.1"
],
"values": [
{
"name": "auto",
"description": "Computes to the value of 'align-items' on the element's parent, or 'stretch' if the element has no parent. On absolutely positioned elements, it computes to itself."
},
{
"name": "normal"
},
{
"name": "self-end"
},
{
"name": "self-start"
},
{
"name": "baseline",
"description": "If the flex item's inline axis is the same as the cross axis, this value is identical to 'flex-start'. Otherwise, it participates in baseline alignment."
},
{
"name": "center",
"description": "The flex item's margin box is centered in the cross axis within the line."
},
{
"name": "flex-end",
"description": "The cross-end margin edge of the flex item is placed flush with the cross-end edge of the line."
},
{
"name": "flex-start",
"description": "The cross-start margin edge of the flex item is placed flush with the cross-start edge of the line."
},
{
"name": "stretch",
"description": "If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."
},
{
"name": "baseline"
},
{
"name": "first baseline"
},
{
"name": "last baseline"
},
{
"name": "safe"
},
{
"name": "unsafe"
}
],
"syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>",
"relevance": 74,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/align-self"
}
],
"description": "Allows the default alignment along the cross axis to be overridden for individual flex items.",
"restrictions": [
"enum"
]
},
{
"name": "all",
"browsers": [
"E79",
"FF27",
"S9.1",
"C37",
"O24"
],
"values": [],
"syntax": "initial | inherit | unset | revert | revert-layer",
"relevance": 54,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/all"
}
],
"description": "Shorthand that resets all properties except 'direction' and 'unicode-bidi'.",
"restrictions": [
"enum"
]
},
{
"name": "alt",
"browsers": [
"S9"
],
"values": [],
"relevance": 50,
"description": "Provides alternative text for assistive technology to replace the generated content of a ::before or ::after element.",
"restrictions": [
"string",
"enum"
]
},
{
"name": "animation",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"values": [
{
"name": "alternate",
"description": "The animation cycle iterations that are odd counts are played in the normal direction, and the animation cycle iterations that are even counts are played in a reverse direction."
},
{
"name": "alternate-reverse",
"description": "The animation cycle iterations that are odd counts are played in the reverse direction, and the animation cycle iterations that are even counts are played in a normal direction."
},
{
"name": "backwards",
"description": "The beginning property value (as defined in the first @keyframes at-rule) is applied before the animation is displayed, during the period defined by 'animation-delay'."
},
{
"name": "both",
"description": "Both forwards and backwards fill modes are applied."
},
{
"name": "forwards",
"description": "The final property value (as defined in the last @keyframes at-rule) is maintained after the animation completes."
},
{
"name": "infinite",
"description": "Causes the animation to repeat forever."
},
{
"name": "none",
"description": "No animation is performed"
},
{
"name": "normal",
"description": "Normal playback."
},
{
"name": "reverse",
"description": "All iterations of the animation are played in the reverse direction from the way they were specified."
}
],
"syntax": "<single-animation>#",
"relevance": 82,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation"
}
],
"description": "Shorthand property combines six of the animation properties into a single property.",
"restrictions": [
"time",
"timing-function",
"enum",
"identifier",
"number"
]
},
{
"name": "animation-delay",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"syntax": "<time>#",
"relevance": 67,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-delay"
}
],
"description": "Defines when the animation will start.",
"restrictions": [
"time"
]
},
{
"name": "animation-direction",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"values": [
{
"name": "alternate",
"description": "The animation cycle iterations that are odd counts are played in the normal direction, and the animation cycle iterations that are even counts are played in a reverse direction."
},
{
"name": "alternate-reverse",
"description": "The animation cycle iterations that are odd counts are played in the reverse direction, and the animation cycle iterations that are even counts are played in a normal direction."
},
{
"name": "normal",
"description": "Normal playback."
},
{
"name": "reverse",
"description": "All iterations of the animation are played in the reverse direction from the way they were specified."
}
],
"syntax": "<single-animation-direction>#",
"relevance": 58,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-direction"
}
],
"description": "Defines whether or not the animation should play in reverse on alternate cycles.",
"restrictions": [
"enum"
]
},
{
"name": "animation-duration",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"syntax": "<time>#",
"relevance": 71,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-duration"
}
],
"description": "Defines the length of time that an animation takes to complete one cycle.",
"restrictions": [
"time"
]
},
{
"name": "animation-fill-mode",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"values": [
{
"name": "backwards",
"description": "The beginning property value (as defined in the first @keyframes at-rule) is applied before the animation is displayed, during the period defined by 'animation-delay'."
},
{
"name": "both",
"description": "Both forwards and backwards fill modes are applied."
},
{
"name": "forwards",
"description": "The final property value (as defined in the last @keyframes at-rule) is maintained after the animation completes."
},
{
"name": "none",
"description": "There is no change to the property value between the time the animation is applied and the time the animation begins playing or after the animation completes."
}
],
"syntax": "<single-animation-fill-mode>#",
"relevance": 64,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode"
}
],
"description": "Defines what values are applied by the animation outside the time it is executing.",
"restrictions": [
"enum"
]
},
{
"name": "animation-iteration-count",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"values": [
{
"name": "infinite",
"description": "Causes the animation to repeat forever."
}
],
"syntax": "<single-animation-iteration-count>#",
"relevance": 65,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count"
}
],
"description": "Defines the number of times an animation cycle is played. The default value is one, meaning the animation will play from beginning to end once.",
"restrictions": [
"number",
"enum"
]
},
{
"name": "animation-name",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"values": [
{
"name": "none",
"description": "No animation is performed"
}
],
"syntax": "[ none | <keyframes-name> ]#",
"relevance": 70,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-name"
}
],
"description": "Defines a list of animations that apply. Each name is used to select the keyframe at-rule that provides the property values for the animation.",
"restrictions": [
"identifier",
"enum"
]
},
{
"name": "animation-play-state",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"values": [
{
"name": "paused",
"description": "A running animation will be paused."
},
{
"name": "running",
"description": "Resume playback of a paused animation."
}
],
"syntax": "<single-animation-play-state>#",
"relevance": 55,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-play-state"
}
],
"description": "Defines whether the animation is running or paused.",
"restrictions": [
"enum"
]
},
{
"name": "animation-timing-function",
"browsers": [
"E12",
"FF16",
"S9",
"C43",
"IE10",
"O30"
],
"syntax": "<easing-function>#",
"relevance": 72,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-timing-function"
}
],
"description": "Describes how the animation will progress over one cycle of its duration.",
"restrictions": [
"timing-function"
]
},
{
"name": "backface-visibility",
"browsers": [
"E12",
"FF16",
"S15.4",
"C36",
"IE10",
"O23"
],
"values": [
{
"name": "hidden",
"description": "Back side is hidden."
},
{
"name": "visible",
"description": "Back side is visible."
}
],
"syntax": "visible | hidden",
"relevance": 59,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/backface-visibility"
}
],
"description": "Determines whether or not the 'back' side of a transformed element is visible when facing the viewer. With an identity transform, the front side of an element faces the viewer.",
"restrictions": [
"enum"
]
},
{
"name": "background",
"browsers": [
"E12",
"FF1",
"S1",
"C1",
"IE4",
"O3.5"
],
"values": [
{
"name": "fixed",
"description": "The background is fixed with regard to the viewport. In paged media where there is no viewport, a 'fixed' background is fixed with respect to the page box and therefore replicated on every page."
},
{
"name": "local",
"description": "The background is fixed with regard to the element's contents: if the element has a scrolling mechanism, the background scrolls with the element's contents."
},
{
"name": "none",
"description": "A value of 'none' counts as an image layer but draws nothing."
},
{
"name": "scroll",
"description": "The background is fixed with regard to the element itself and does not scroll with its contents. (It is effectively attached to the element's border.)"
}
],
"syntax": "[ <bg-layer> , ]* <final-bg-layer>",
"relevance": 93,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/background"
}
],
"description": "Shorthand property for setting most background properties at the same place in the style sheet.",
"restrictions": [
"enum",
"image",
"color",
"position",
"length",
"repeat",
"percentage",
"box"
]
},
{
"name": "background-attachment",
"browsers": [
"E12",
"FF1",
"S1",
"C1",
"IE4",
"O3.5"
],
"values": [
{
"name": "fixed",
"description": "The background is fixed with regard to the viewport. In paged media where there is no viewport, a 'fixed' background is fixed with respect to the page box and therefore replicated on every page."
},
{
"name": "local",
"browsers": [
"E12",
"FF1",
"S1",
"C1",
"IE4",
"O3.5"
],
"description": "The background is fixed with regard to the element's contents: if the element has a scrolling mechanism, the background scrolls with the element's contents."
},
{
"name": "scroll",
"description": "The background is fixed with regard to the element itself and does not scroll with its contents. (It is effectively attached to the element's border.)"
}
],
"syntax": "<attachment>#",
"relevance": 54,
"references": [
{
"name": "MDN Reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/background-attachment"
}
],
"description": "Specifies whether the background images are fixed with regard to the viewport ('fixed') or scroll along with the element ('scroll') or its contents ('local').",
"restrictions": [
"enum"
]
},
{
"name": "background-blend-mode",
"browsers": [
"E79",
"FF30",
"S8",
"C35",
"O22"
],
"values": [
{
"name": "normal",
"description": "Default attribute which specifies no blending"
},
{
"name": "multiply",
"description": "The source color is multiplied by the destination color and replaces the destination."
},
{
"name": "screen",
"description": "Multiplies the complements of the backdrop and source color values, then complements the result."
},
{
"name": "overlay",
"description": "Multiplies or screens the colors, depending on the backdrop color value."
},
{
"name": "darken",
"description": "Selects the darker of the backdrop and source colors."
},
{
"name": "lighten",
"description": "Selects the lighter of the backdrop and source colors."
},
{
"name": "color-dodge",
"description": "Brightens the backdrop color to reflect the source color."
},
{
"name": "color-burn",
"description": "Darkens the backdrop color to reflect the source color."
},
{
"name": "hard-light",
"description": "Multiplies or screens the colors, depending on the source color value."
},
{
"name": "soft-light",
"description": "Darkens or lightens the colors, depending on the source color value."
},
{
"name": "difference",
"description": "Subtracts the darker of the two constituent colors from the lighter color.."
},
{
"name": "exclusion",
"description": "Produces an effect similar to that of the Difference mode but lower in contrast."
},
{
"name": "hue",
"browsers": [
"E79",
"FF30",
"S8",
"C35",
"O22"
],
"description": "Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color."
},
{
"name": "saturation",
"browsers": [
"E79",
"FF30",
"S8",
"C35",
"O22"
],
"description": "Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color."
},
{
"name": "color",
"browsers": [
"E79",
"FF30",
"S8",
"C35",
"O22"
],
"description": "Creates a color with the hue and saturation of the source color and the luminosity of the backdrop color."
},
{
"name": "luminosity",
"browsers": [
"E79",
"FF30",
"S8",
"C35",
"O22"
],
"description": "Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color."
}