-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
11095 lines (7840 loc) · 313 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PostCSS Plugin Directory - CSS Tools</title>
<script type="text/javascript" src="./script.js" defer=""></script>
<link rel="stylesheet" href="./style.css">
<link href="./favicon.ico" rel="shortcut icon">
<script>
window._searchData = [{"name":"postcss-advanced-variables","id":"postcss-advanced-variables","keywords":["sass","scss","variables","conditional","media query"],"description":"Use Sass-like variables, conditionals, and iterators in CSS"},{"name":"postcss-animations","id":"postcss-animations","keywords":["animation","keyframes"],"description":"PostCSS plugin that adds `@keyframes` from animate.css, tuesday.css, magic.css, mimic.css"},{"name":"postcss-aspect-ratio-property","id":"postcss-aspect-ratio-property","keywords":["aspect-ratio"],"description":"PostCSS plugin CSS4 aspect-ratio property"},{"name":"postcss-assets","id":"postcss-assets","keywords":["base64","image","url"],"description":"PostCSS plugin to manage assets"},{"name":"postcss-atomizer","id":"postcss-atomizer","keywords":["atomizer"],"description":"PostCSS Atomizer plugin"},{"name":"postcss-attribute-case-insensitive","id":"postcss-attribute-case-insensitive","keywords":[],"description":"Enable support for case insensitive attribute matching in selectors"},{"name":"autoprefixer","id":"autoprefixer","keywords":["prefix"],"description":"Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website"},{"name":"postcss-better-units","id":"postcss-better-units","keywords":["custom units"],"description":"A PostCSS plugin to define, transform, and manage custom or existing CSS units with ease."},{"name":"css-blank-pseudo","id":"css-blank-pseudo","keywords":["a11y","accessibility","selector"],"description":"Style form elements when they are empty"},{"name":"postcss-browser-comments","id":"postcss-browser-comments","keywords":["browserslists"],"description":"Keep only the CSS you need based on comments and your browserslist"},{"name":"@csstools/postcss-bundler","id":"%40csstools%2Fpostcss-bundler","keywords":["bundler","import","url","csstools"],"description":"Bundle CSS"},{"name":"postcss-calc","id":"postcss-calc","keywords":["calc"],"description":"PostCSS plugin to reduce calc()"},{"name":"@csstools/postcss-cascade-layers","id":"%40csstools%2Fpostcss-cascade-layers","keywords":["cascade","layers","selector","specificity","csstools"],"description":"Use cascade layers in CSS"},{"name":"postcss-clamp","id":"postcss-clamp","keywords":["clamp","min","max"],"description":"PostCSS plugin to transform clamp() to combination of min/max"},{"name":"postcss-class-apply","id":"postcss-class-apply","keywords":["class apply","apply","@apply"],"description":"PostCSS plugin enabling custom class sets like tailwind css"},{"name":"postcss-classes-to-mixins","id":"postcss-classes-to-mixins","keywords":["mixin","sass"],"description":"PostCSS plugin to intelligently convert CSS classes to SASS, Less and Stylus mixins"},{"name":"postcss-clip-path-polyfill","id":"postcss-clip-path-polyfill","keywords":["clip-path"],"description":"Generates SVG fallback for clip-path properties to make it works in Firefox"},{"name":"cnjm-postcss-px-to-viewport","id":"cnjm-postcss-px-to-viewport","keywords":["px","viewport","vw","vh","vmin","vmax"],"description":"A CSS post-processor that converts px to viewport units (vw, vh, vmin, vmax)."},{"name":"postcss-color-converter","id":"postcss-color-converter","keywords":["color"],"description":"PostCSS plugin for convert colors."},{"name":"@csstools/postcss-color-function","id":"%40csstools%2Fpostcss-color-function","keywords":["color","display-p3","prophoto-rgb","rec2020","rgb","rgba","srgb-linear","csstools"],"description":"Use the color() function in CSS"},{"name":"postcss-color-functional-notation","id":"postcss-color-functional-notation","keywords":["color","hsl","hsla","hwb","rgb","rgba"],"description":"Use space and slash separated color notation in CSS"},{"name":"postcss-color-hex-alpha","id":"postcss-color-hex-alpha","keywords":["alpha","color","hex","transparency","transparent"],"description":"Use 4 & 8 character hex color notation in CSS"},{"name":"postcss-color-hsla-fallback","id":"postcss-color-hsla-fallback","keywords":["hsl","hsla","color","color-convert","hexadecimal"],"description":"PostCSS plugin to transform hsl() and hsla() to hexadecimal"},{"name":"@csstools/postcss-color-mix-function","id":"%40csstools%2Fpostcss-color-mix-function","keywords":["color-mix","display-p3","interpolation","prophoto-rgb","rec2020","rgb","rgba","srgb-linear","csstools"],"description":"Use the color-mix function in CSS"},{"name":"postcss-color-mod-function","id":"postcss-color-mod-function","keywords":["color","colours","modifications","mods","adjusters","adjustments","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"description":"Modify colors using the color-mod() function in CSS"},{"name":"postcss-color-rebeccapurple","id":"postcss-color-rebeccapurple","keywords":["color","purple","rebecca","rgb"],"description":"Use the rebeccapurple color keyword in CSS"},{"name":"postcss-color-transformer","id":"postcss-color-transformer","keywords":["color","oklch","hsl","rgb","lab","lch","hwb"],"description":"Plugin PostCSS pour convertir entre différents formats de couleurs"},{"name":"postcss-colorguard","id":"postcss-colorguard","keywords":["color"],"description":"PostCSS plugin to keep a watchful eye on your css colors"},{"name":"postcss-colormin","id":"postcss-colormin","keywords":["color","minify"],"description":"Minify colors in your CSS files with PostCSS."},{"name":"postcss-colornorm","id":"postcss-colornorm","keywords":["color","rgb","hsl","hex","hwb","cmyk"],"description":"PostCSS plugin to normalize colors to a specific format"},{"name":"postcss-combine-duplicated-selectors","id":"postcss-combine-duplicated-selectors","keywords":["selector"],"description":"automatically keep css selectors unique"},{"name":"componentry","id":"componentry","keywords":["accessibility"],"description":"React component library for building custom design systems"},{"name":"postcss-conditionals-renewed","id":"postcss-conditionals-renewed","keywords":["conditional","if","else"],"description":"PostCSS plugin that enables @if statements in your CSS"},{"name":"@csstools/postcss-content-alt-text","id":"%40csstools%2Fpostcss-content-alt-text","keywords":["accessibility","alt","content","fallback","csstools"],"description":"Generate fallback values for content with alt text"},{"name":"@csstools/postcss-contrast-color-function","id":"%40csstools%2Fpostcss-contrast-color-function","keywords":["contrast","contrast-color","wcag","csstools"],"description":"Dynamically specify a text color with adequate contrast"},{"name":"postcss-convert-values","id":"postcss-convert-values","keywords":[],"description":"Convert values with PostCSS (e.g. ms -> s)"},{"name":"postcss-csscomb","id":"postcss-csscomb","keywords":[],"description":"PostCSS plugin to apply CSScomb"},{"name":"cssnano","id":"cssnano","keywords":["minify","sponsor"],"description":"A modular minifier, built on top of the PostCSS ecosystem."},{"name":"postcss-custom-media","id":"postcss-custom-media","keywords":["atrule","media","query"],"description":"Use Custom Media Queries in CSS"},{"name":"postcss-custom-media-generator","id":"postcss-custom-media-generator","keywords":[],"description":"PostCSS plugin custom media generator"},{"name":"postcss-custom-properties","id":"postcss-custom-properties","keywords":["variables"],"description":"Use Custom Properties Queries in CSS"},{"name":"postcss-custom-properties-fallback","id":"postcss-custom-properties-fallback","keywords":["variables"],"description":"Adds fallbacks to your CSS var() functions"},{"name":"postcss-custom-selectors","id":"postcss-custom-selectors","keywords":["atrule","selector"],"description":"Use Custom Selectors in CSS"},{"name":"postcss-dark-theme-class","id":"postcss-dark-theme-class","keywords":["dark-theme","auto-theme","theme-switcher"],"description":"CSS solution for light/dark/auto theme switcher for websites"},{"name":"@csstools/postcss-debug-logger","id":"%40csstools%2Fpostcss-debug-logger","keywords":["debug","csstools"],"description":"Log the AST nodes PostCSS is processing"},{"name":"css-declaration-sorter","id":"css-declaration-sorter","keywords":["order"],"description":"Sorts CSS declarations fast and automatically in a certain order."},{"name":"postcss-delete-duplicate-css","id":"postcss-delete-duplicate-css","keywords":["duplicate"],"description":"PostCSS plugin delete duplicate css in the file"},{"name":"postcss-design-tokens","id":"postcss-design-tokens","keywords":["token"],"description":"PostCSS plugin that provides a function to retrieve design tokens expressed in JS or JSON, within CSS"},{"name":"@csstools/postcss-design-tokens","id":"%40csstools%2Fpostcss-design-tokens","keywords":["design-tokens","csstools"],"description":"Use design tokens in your CSS"},{"name":"postcss-dir-pseudo-class","id":"postcss-dir-pseudo-class","keywords":["ltr","rtl","selector"],"description":"Use the :dir pseudo-class in CSS"},{"name":"postcss-discard-comments","id":"postcss-discard-comments","keywords":["comments"],"description":"Discard comments in your CSS files with PostCSS."},{"name":"postcss-discard-duplicates","id":"postcss-discard-duplicates","keywords":[],"description":"Discard duplicate rules in your CSS files with PostCSS."},{"name":"postcss-discard-empty","id":"postcss-discard-empty","keywords":["minify"],"description":"Discard empty rules and values with PostCSS."},{"name":"postcss-discard-overridden","id":"postcss-discard-overridden","keywords":["keyframes","counter-style"],"description":"PostCSS plugin to discard overridden @keyframes or @counter-style."},{"name":"postcss-discard-unused","id":"postcss-discard-unused","keywords":["minify"],"description":"Discard unused counter styles, keyframes and fonts."},{"name":"postcss-double-position-gradients","id":"postcss-double-position-gradients","keywords":["color","double","gradients","linear","position","radial","repeating"],"description":"Use double-position gradients in CSS"},{"name":"postcss-each","id":"postcss-each","keywords":[],"description":"PostCSS plugin to iterate through values"},{"name":"postcss-easings","id":"postcss-easings","keywords":["easings","sponsor"],"description":"PostCSS plugin to replace easing names to cubic-bezier()"},{"name":"postcss-easy-import","id":"postcss-easy-import","keywords":["import","glob"],"description":"PostCSS plugin to inline @import rules content with extra features"},{"name":"postcss-editor-styles-wrapper","id":"postcss-editor-styles-wrapper","keywords":[],"description":"Remove your editor-styles from the global scope "},{"name":"postcss-em-media-query","id":"postcss-em-media-query","keywords":["em","media","query"],"description":"PostCSS plugin for transforming min/max-width/height media queries to ems."},{"name":"postcss-env-function","id":"postcss-env-function","keywords":["constants","variables"],"description":"Use env() variables in CSS"},{"name":"@csstools/postcss-exponential-functions","id":"%40csstools%2Fpostcss-exponential-functions","keywords":["exp","exponential","hypot","log","pow","sqrt","csstools"],"description":"Use pow(), sqrt(), hypot(), log(), exp() exponential functions in CSS"},{"name":"postcss-extend-rule","id":"postcss-extend-rule","keywords":["extend","matches","selector"],"description":"Use the @extend at-rule and functional selectors in CSS"},{"name":"@csstools/postcss-extract","id":"%40csstools%2Fpostcss-extract","keywords":["csstools"],"description":"Extract bits of your CSS"},{"name":"postcss-extract-media-query","id":"postcss-extract-media-query","keywords":["media query"],"description":"PostCSS plugin to extract all media query from CSS and emit as separate files."},{"name":"flex-gap-polyfill","id":"flex-gap-polyfill","keywords":["gutters","flex"],"description":"A PostCSS polyfill for adding gap between flex items"},{"name":"postcss-flexbox-reset","id":"postcss-flexbox-reset","keywords":["flex"],"description":"PostCSS plugin for resetting flexbox"},{"name":"postcss-flexbugs-fixes","id":"postcss-flexbugs-fixes","keywords":["flex"],"description":"PostCSS plugin This project tries to fix all of flexbug's issues"},{"name":"postcss-flexibility","id":"postcss-flexibility","keywords":["flex"],"description":"PostCSS plugin for Flexibility polyfill"},{"name":"@lehoczky/postcss-fluid","id":"%40lehoczky%2Fpostcss-fluid","keywords":[],"description":"PostCSS plugin that makes it easier to work with fluid css values."},{"name":"postcss-focus","id":"postcss-focus","keywords":["hover","focus","accessibility","a11y"],"description":"PostCSS plugin to add :focus-visible selector to every :hover for keyboard accessibility"},{"name":"postcss-focus-visible","id":"postcss-focus-visible","keywords":["a11y","accessibility","button","cursor","focus","selector"],"description":"Use the :focus-visible pseudo-selector in CSS"},{"name":"postcss-focus-within","id":"postcss-focus-within","keywords":["a11y","accessibility","focus","selector"],"description":"Use the :focus-within pseudo-selector in CSS"},{"name":"postcss-font-family-system-ui","id":"postcss-font-family-system-ui","keywords":["font-family"],"description":"Use the system-ui font family in CSS"},{"name":"@csstools/postcss-font-format-keywords","id":"%40csstools%2Fpostcss-font-format-keywords","keywords":["csstools"],"description":"Use unquoted format on @font-face CSS definitions."},{"name":"postcss-font-grabber","id":"postcss-font-grabber","keywords":["font-face"],"description":"It grabs remote font files and update your CSS, just like that."},{"name":"postcss-font-magician","id":"postcss-font-magician","keywords":["fonts","weights","typography"],"description":"PostCSS plugin that magically generates all the @font-face rules"},{"name":"postcss-font-variant","id":"postcss-font-variant","keywords":[],"description":"PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)"},{"name":"postcss-fonticons","id":"postcss-fonticons","keywords":[],"description":"PostCSS plugin to generate font icons from stylesheets."},{"name":"postcss-fontpie","id":"postcss-fontpie","keywords":["fontpie","fonts","cls"],"description":"A PostCSS plugin for optimizing font loading layout shifts using fontpie!"},{"name":"postcss-functions","id":"postcss-functions","keywords":[],"description":"PostCSS plugin for exposing JavaScript functions"},{"name":"@csstools/postcss-gamut-mapping","id":"%40csstools%2Fpostcss-gamut-mapping","keywords":["color","display-p3","gamut mapping","p3","rec2020","srgb","wide gamut","csstools"],"description":"Gamut map css colors to fit display specific gamuts"},{"name":"postcss-gap-properties","id":"postcss-gap-properties","keywords":["gap","grid","prefix","shorthand"],"description":"Use the gap, column-gap, and row-gap shorthand properties in CSS"},{"name":"@csstools/postcss-global-data","id":"%40csstools%2Fpostcss-global-data","keywords":["productivity","csstools"],"description":"PostCSS plugin to define global data that will be injected into PostCSS for use in other plugins."},{"name":"@csstools/postcss-gradients-interpolation-method","id":"%40csstools%2Fpostcss-gradients-interpolation-method","keywords":["color","color space interpolation","gradients","hue interpolation method","interpolation","linear","radial","repeating","csstools"],"description":"Use interpolation methods in CSS gradient functions"},{"name":"postcss-grid-kiss","id":"postcss-grid-kiss","keywords":["ascii-art","grid"],"description":"A PostCSS plugin to keep CSS grids stupidly simple"},{"name":"postcss-grid-reset","id":"postcss-grid-reset","keywords":["grid"],"description":"PostCSS plugin for resetting CSS Grid."},{"name":"css-has-pseudo","id":"css-has-pseudo","keywords":["contains","has","selector"],"description":"Style elements relative to other elements in CSS"},{"name":"postcss-hexrgba","id":"postcss-hexrgba","keywords":["hex","rgba"],"description":"PostCSS plugin that adds shorthand hex methods to rgba() values"},{"name":"@webgarden/postcss-high-contrast","id":"%40webgarden%2Fpostcss-high-contrast","keywords":[],"description":"PostCSS High Contrast is PostCSS plugin that helps automatically converts all colors to high contrast and append it to the original css - forked from: shiwaforce/postcss-high-contrast"},{"name":"postcss-hover-focus-visible","id":"postcss-hover-focus-visible","keywords":["hover","focus-visible","focus","accessibility"],"description":"PostCSS plugin to add :focus-visible selector and/or :focus to every :hover, this is for keyboard accessibility"},{"name":"postcss-hover-media-feature","id":"postcss-hover-media-feature","keywords":["media","query","hover"],"description":"PostCSS plugin that extracts and wraps rules containing `:hover` pseudo-classes in `@media (hover: hover) {}` media queries"},{"name":"@csstools/postcss-hwb-function","id":"%40csstools%2Fpostcss-hwb-function","keywords":["color","hwb","csstools"],"description":"Use hwb() color functions in CSS"},{"name":"@csstools/postcss-ic-unit","id":"%40csstools%2Fpostcss-ic-unit","keywords":["glyph","ic","csstools"],"description":"Use the ic length unit"},{"name":"postcss-iconsauce","id":"postcss-iconsauce","keywords":[],"description":"PostCSS plugin for Iconsauce"},{"name":"postcss-image-inliner","id":"postcss-image-inliner","keywords":["inline","image"],"description":"PostCSS plugin to inline images into css"},{"name":"postcss-image-set-function","id":"postcss-image-set-function","keywords":["background","image","image-set","resolution"],"description":"Display resolution-dependent images using the image-set() function in CSS"},{"name":"postcss-import","id":"postcss-import","keywords":["import"],"description":"PostCSS plugin to import CSS files"},{"name":"postcss-import-ext-glob","id":"postcss-import-ext-glob","keywords":["import","glob"],"description":"A PostCSS plugin to extend postcss-import path resolver to allow glob usage as path"},{"name":"@eik/postcss-import-map","id":"%40eik%2Fpostcss-import-map","keywords":["import","url"],"description":"PostCSS plugin that uses Eik defined import map files to transform bare import specifiers to absolute URLs in @import rules"},{"name":"postcss-import-styled-js","id":"postcss-import-styled-js","keywords":["styled-js"],"description":"Compiles Styled export to CSS at compile time"},{"name":"postcss-import-svg","id":"postcss-import-svg","keywords":["inline"],"description":"PostCSS plugin to reference an SVG file and inline it, optionally update currentColor references"},{"name":"postcss-import-url","id":"postcss-import-url","keywords":[],"description":"PostCSS plugin inlines remote files."},{"name":"postcss-include-media","id":"postcss-include-media","keywords":["media query"],"description":"PostCSS plugin to output @media definitions from include-media format."},{"name":"postcss-initial","id":"postcss-initial","keywords":["reset"],"description":"PostCSS plugin to fallback initial keyword."},{"name":"@csstools/postcss-initial","id":"%40csstools%2Fpostcss-initial","keywords":["csstools"],"description":"PostCSS plugin to fallback initial keyword."},{"name":"postcss-inline-base64","id":"postcss-inline-base64","keywords":["base64","inline"],"description":"PostCSS plugin for encode the file to base64"},{"name":"postcss-inline-media","id":"postcss-inline-media","keywords":["inline","media","query","shortcut"],"description":"Media queries shortcut on PostCSS"},{"name":"postcss-inline-svg","id":"postcss-inline-svg","keywords":["inline"],"description":"PostCSS plugin to reference an SVG file and control its attributes with CSS syntax"},{"name":"postcss-input-range","id":"postcss-input-range","keywords":[],"description":"Style range inputs with unprefixed pseudo-classes"},{"name":"@csstools/postcss-is-pseudo-class","id":"%40csstools%2Fpostcss-is-pseudo-class","keywords":["matches","selector","csstools"],"description":"A pseudo-class for matching elements in a selector list"},{"name":"postcss-jit-props","id":"postcss-jit-props","keywords":["custom properties"],"description":"PostCSS plugin to insert variables from a data source based on discovered usage"},{"name":"postcss-lab-function","id":"postcss-lab-function","keywords":["color","lab","lch","rgb","rgba"],"description":"Use lab() and lch() color functions in CSS"},{"name":"@csstools/postcss-light-dark-function","id":"%40csstools%2Fpostcss-light-dark-function","keywords":["csstools"],"description":"Use the light-dark() color function in CSS"},{"name":"postcss-logical","id":"postcss-logical","keywords":["dir","inline","logical","ltr","relative","rtl"],"description":"Use logical properties and values in CSS"},{"name":"@ackl/postcss-logical","id":"%40ackl%2Fpostcss-logical","keywords":["logical","relative","ltr","rtl","dir","inline"],"description":"Use logical properties and values in CSS"},{"name":"@csstools/postcss-logical-float-and-clear","id":"%40csstools%2Fpostcss-logical-float-and-clear","keywords":["inline","logical","csstools"],"description":"Use flow-relative (inline-start and inline-end) values for float and clear"},{"name":"@csstools/postcss-logical-overflow","id":"%40csstools%2Fpostcss-logical-overflow","keywords":["logical","csstools"],"description":"Use logical overflow properties and values in CSS"},{"name":"@csstools/postcss-logical-overscroll-behavior","id":"%40csstools%2Fpostcss-logical-overscroll-behavior","keywords":["logical","overscroll-behavior","csstools"],"description":"Use logical overscroll behavior properties and values in CSS"},{"name":"@csstools/postcss-logical-resize","id":"%40csstools%2Fpostcss-logical-resize","keywords":["inline","logical","csstools"],"description":"Use logical values in the resize property"},{"name":"@csstools/postcss-logical-viewport-units","id":"%40csstools%2Fpostcss-logical-viewport-units","keywords":["inline","logical","csstools"],"description":"Use vb and vi length units in CSS"},{"name":"lost","id":"lost","keywords":["grid"],"description":"LostGrid is a powerful grid system built in PostCSS that works with any preprocessor and even vanilla CSS."},{"name":"postcss-media-minmax","id":"postcss-media-minmax","keywords":["media query"],"description":"Using more intuitive `>=`, `<=`, `>`, `<` instead of media queries min/max prefix."},{"name":"@csstools/postcss-media-minmax","id":"%40csstools%2Fpostcss-media-minmax","keywords":["media query","csstools"],"description":"Use the range notation in CSS media queries"},{"name":"@csstools/postcss-media-queries-aspect-ratio-number-values","id":"%40csstools%2Fpostcss-media-queries-aspect-ratio-number-values","keywords":["aspect-ratio","media query","csstools"],"description":"Use number values in aspect-ratio media queries."},{"name":"postcss-media-query-gap","id":"postcss-media-query-gap","keywords":["gap","media","query"],"description":"PostCSS plugin for applying gap on max-width/height media queries."},{"name":"postcss-merge-at-rules","id":"postcss-merge-at-rules","keywords":["css-optimizations","responsive-css","merge-at-rules"],"description":"PostCSS plugin for merging and nesting CSS at rules"},{"name":"postcss-merge-idents","id":"postcss-merge-idents","keywords":[],"description":"Merge keyframe and counter style identifiers."},{"name":"postcss-merge-longhand","id":"postcss-merge-longhand","keywords":["minify"],"description":"Merge longhand properties into shorthand with PostCSS."},{"name":"postcss-merge-rules","id":"postcss-merge-rules","keywords":[],"description":"Merge CSS rules with PostCSS."},{"name":"postcss-merge-rules-plus","id":"postcss-merge-rules-plus","keywords":[],"description":"PostCSS plugin for combining css rules (selectors) that have fully/partially identical declarations"},{"name":"postcss-minify","id":"postcss-minify","keywords":["minify"],"description":"PostCSS plugin to remove comments and unnecessary whitespace from CSS files"},{"name":"@csstools/postcss-minify","id":"%40csstools%2Fpostcss-minify","keywords":["minifier","csstools"],"description":"A very basic CSS minifier"},{"name":"postcss-minify-font-values","id":"postcss-minify-font-values","keywords":["font-family"],"description":"Minify font declarations with PostCSS"},{"name":"postcss-minify-gradients","id":"postcss-minify-gradients","keywords":[],"description":"Minify gradient parameters with PostCSS."},{"name":"postcss-minify-params","id":"postcss-minify-params","keywords":["minify"],"description":"Minify at-rule params with PostCSS"},{"name":"postcss-minify-selectors","id":"postcss-minify-selectors","keywords":["minify","selector"],"description":"Minify selectors with PostCSS."},{"name":"postcss-mixins","id":"postcss-mixins","keywords":["mixin","sass"],"description":"PostCSS plugin for mixins"},{"name":"postcss-mobile-forever","id":"postcss-mobile-forever","keywords":["px","viewport"],"description":"PostCSS 伸缩视图转换插件。To adapt different displays by one mobile viewport."},{"name":"modify-selectors","id":"modify-selectors","keywords":["selector"],"description":"PostCSS plugin to modify CSS selectors"},{"name":"postcss-modules","id":"postcss-modules","keywords":[],"description":"PostCSS plugin to use CSS Modules everywhere"},{"name":"@wixc3/postcss-modules","id":"%40wixc3%2Fpostcss-modules","keywords":[],"description":"PostCSS plugin to use CSS Modules everywhere"},{"name":"postcss-modules-local-by-default","id":"postcss-modules-local-by-default","keywords":[],"description":"A CSS Modules transform to make local scope the default"},{"name":"postcss-modules-values-replace","id":"postcss-modules-values-replace","keywords":[],"description":"PostCSS plugin to work around CSS Modules values limitations"},{"name":"postcss-momentum-scrolling","id":"postcss-momentum-scrolling","keywords":["safari"],"description":"PostCSS plugin for adding 'momentum' style scrolling behavior (-webkit-overflow-scrolling: touch) for elements with overflow (scroll, auto) on iOS"},{"name":"postcss-mq-optimize","id":"postcss-mq-optimize","keywords":[],"description":"PostCSS plugin Removes invalid media queries or its expresions"},{"name":"postcss-multiple-tailwind","id":"postcss-multiple-tailwind","keywords":[],"description":"PostCSS plugin to process multiple tailwindcss configs"},{"name":"postcss-nested","id":"postcss-nested","keywords":["sass","nested"],"description":"PostCSS plugin to unwrap nested rules like how Sass does it"},{"name":"postcss-nested-ancestors","id":"postcss-nested-ancestors","keywords":["selector"],"description":"PostCSS plugin to reference any ancestor selector in nested CSS"},{"name":"@csstools/postcss-nested-calc","id":"%40csstools%2Fpostcss-nested-calc","keywords":["calc","math","nested","csstools"],"description":"Use nested calc() expressions in CSS"},{"name":"postcss-nested-import","id":"postcss-nested-import","keywords":["import"],"description":"PostCSS plugin for importing other stylesheet source files anywhere in your CSS."},{"name":"postcss-nested-once","id":"postcss-nested-once","keywords":["sass","nested"],"description":"Postcss plugin to unwrap nested rules (like how Sass does it), compatible with rollup-plugin-styles"},{"name":"postcss-nesting","id":"postcss-nesting","keywords":["nested","selector"],"description":"Nest rules inside each other in CSS"},{"name":"postcss-no-important","id":"postcss-no-important","keywords":["important"],"description":"PostCSS plugin for delete declarations !important"},{"name":"postcss-node-sass","id":"postcss-node-sass","keywords":["sass","scss"],"description":"A PostCSS plugin to parse styles with node-sass"},{"name":"postcss-normalize","id":"postcss-normalize","keywords":[],"description":"Use the parts of normalize.css or sanitize.css you need from your browserslist"},{"name":"postcss-normalize-charset","id":"postcss-normalize-charset","keywords":[],"description":"Add necessary or remove extra charset with PostCSS"},{"name":"@csstools/postcss-normalize-display-values","id":"%40csstools%2Fpostcss-normalize-display-values","keywords":["flex","grid","inline","csstools"],"description":"Use two values display syntax for inner and outer display types."},{"name":"postcss-normalize-positions","id":"postcss-normalize-positions","keywords":[],"description":"Normalize keyword values for position into length values."},{"name":"postcss-normalize-string","id":"postcss-normalize-string","keywords":[],"description":"Normalize wrapping quotes for CSS string literals."},{"name":"postcss-normalize-unicode","id":"postcss-normalize-unicode","keywords":[],"description":"Normalize unicode-range descriptors, and can convert to wildcard ranges."},{"name":"postcss-normalize-url","id":"postcss-normalize-url","keywords":["url"],"description":"Normalize URLs with PostCSS"},{"name":"postcss-normalize-whitespace","id":"postcss-normalize-whitespace","keywords":[],"description":"Trim whitespace inside and around CSS rules & declarations."},{"name":"@csstools/postcss-oklab-function","id":"%40csstools%2Fpostcss-oklab-function","keywords":["color","display-p3","oklab","oklch","csstools"],"description":"Use oklab() and oklch() color functions in CSS"},{"name":"postcss-old-safari-logical-properties-polyfill","id":"postcss-old-safari-logical-properties-polyfill","keywords":["rtl","ltr","logical","safari"],"description":"PostCSS plugin that polyfill W3C's CSS proposal to support logical properties and values"},{"name":"postcss-opacity-percentage","id":"postcss-opacity-percentage","keywords":[],"description":"PostCSS plugin to transform percentage-based opacity values to more compatible floating-point values."},{"name":"postcss-ordered-values","id":"postcss-ordered-values","keywords":[],"description":"Ensure values are ordered consistently in your CSS."},{"name":"postcss-overflow-fallbacks","id":"postcss-overflow-fallbacks","keywords":[],"description":"Postcss plugin which provides fallbacks for `overflow: clip` and `overflow: overlay`"},{"name":"postcss-overflow-shorthand","id":"postcss-overflow-shorthand","keywords":["shorthand"],"description":"Use the overflow shorthand in CSS"},{"name":"postcss-page-break","id":"postcss-page-break","keywords":[],"description":"PostCSS plugin postcss-page-break to fallback `break-` properties with `page-break-` alias"},{"name":"perfectionist-dfd","id":"perfectionist-dfd","keywords":[],"description":"Beautify and/or normalize CSS files. Fork and update of a fork and update of an archived project."},{"name":"postcss-place","id":"postcss-place","keywords":["shorthand"],"description":"Use a place-* shorthand for align-* and justify-* in CSS"},{"name":"@eik/postcss-plugin","id":"%40eik%2Fpostcss-plugin","keywords":["import","url"],"description":"PostCSS plugin that uses Eik defined import map files to transform bare import specifiers to absolute URLs in @import rules"},{"name":"@shopify/postcss-plugin","id":"%40shopify%2Fpostcss-plugin","keywords":[],"description":"Shopify's org-wide PostCSS preset"},{"name":"postcss-plugin-ignore-file","id":"postcss-plugin-ignore-file","keywords":[],"description":"PostCSS plugin that ignore a file with a comment"},{"name":"postcss-polyfill-flex-gap","id":"postcss-polyfill-flex-gap","keywords":[],"description":"PostCSS plugin to polyfill flex gap"},{"name":"css-prefers-color-scheme","id":"css-prefers-color-scheme","keywords":["color","media","query"],"description":"Use light and dark color schemes in all browsers"},{"name":"postcss-prefix-hover","id":"postcss-prefix-hover","keywords":["hover"],"description":"PostCSS plugin for prefixing a selection containing :hover"},{"name":"postcss-prefix-selector","id":"postcss-prefix-selector","keywords":["prefix","selector"],"description":"Prefix all CSS rules with a selector"},{"name":"postcss-prefixer","id":"postcss-prefixer","keywords":[],"description":"postcss plugin to prefix all css selector classes and ids"},{"name":"postcss-preset-env","id":"postcss-preset-env","keywords":[],"description":"Convert modern CSS into something browsers understand"},{"name":"@csstools/postcss-progressive-custom-properties","id":"%40csstools%2Fpostcss-progressive-custom-properties","keywords":["variables","csstools"],"description":"Correctly declare progressive enhancements for CSS Custom Properties."},{"name":"postcss-property-lookup","id":"postcss-property-lookup","keywords":[],"description":"PostCSS plugin that allows referencing property values without a variable"},{"name":"postcss-proportional","id":"postcss-proportional","keywords":["proportional"],"description":"PostCSS plugin to make layouts responsively proportional"},{"name":"postcss-pseudo-class-any-link","id":"postcss-pseudo-class-any-link","keywords":[],"description":"Use the :any-link pseudo-class in CSS"},{"name":"postcss-pxtorem","id":"postcss-pxtorem","keywords":["rem","px"],"description":"A CSS post-processor that converts px to rem."},{"name":"@minko-fe/postcss-pxtorem","id":"%40minko-fe%2Fpostcss-pxtorem","keywords":["rem","px"],"description":"A postcss plugin that converts px to rem."},{"name":"postcss-pxtorem-vite-vue2","id":"postcss-pxtorem-vite-vue2","keywords":["rem","px"],"description":"A CSS post-processor that converts px to rem."},{"name":"postcss-pxtransform","id":"postcss-pxtransform","keywords":[],"description":"PostCSS plugin px 转小程序 rpx及h5 rem 单位"},{"name":"@csstools/postcss-random-function","id":"%40csstools%2Fpostcss-random-function","keywords":["random","csstools"],"description":"Use the random function in CSS"},{"name":"@csstools/postcss-rebase-url","id":"%40csstools%2Fpostcss-rebase-url","keywords":["url","csstools"],"description":"Rebase url() functions when transforming CSS"},{"name":"postcss-reduce-idents","id":"postcss-reduce-idents","keywords":[],"description":"Reduce custom identifiers with PostCSS."},{"name":"postcss-reduce-initial","id":"postcss-reduce-initial","keywords":[],"description":"Reduce initial definitions to the actual initial value, where possible."},{"name":"postcss-reference","id":"postcss-reference","keywords":["import","extend"],"description":"PostCSS plugin for referencing selectors' rules from CSS files and defined rulesets."},{"name":"@csstools/postcss-relative-color-syntax","id":"%40csstools%2Fpostcss-relative-color-syntax","keywords":["color","relative color syntax","csstools"],"description":"Use the relative color syntax in CSS"},{"name":"postcss-remove-duplicate-values","id":"postcss-remove-duplicate-values","keywords":[],"description":"A PostCSS plugin that removes duplicate CSS property values within rules, optimizing stylesheet size and improving maintainability."},{"name":"postcss-remove-font-face-format","id":"postcss-remove-font-face-format","keywords":[],"description":"PostCSS plugin to remove font faces by format"},{"name":"postcss-remove-google-fonts","id":"postcss-remove-google-fonts","keywords":[],"description":"PostCSS plugin to remove Google Fonts"},{"name":"postcss-replace","id":"postcss-replace","keywords":[],"description":"PostCSS plugin for replacing strings."},{"name":"postcss-replace-overflow-wrap","id":"postcss-replace-overflow-wrap","keywords":[],"description":"PostCSS plugin to replace overflow-wrap with word-wrap or optionally retain both declarations."},{"name":"@csstools/postcss-rewrite-url","id":"%40csstools%2Fpostcss-rewrite-url","keywords":["rewrite","url","csstools"],"description":"Rewrite url values in CSS"},{"name":"postcss-round-subpixels","id":"postcss-round-subpixels","keywords":["fallback","compatibility"],"description":"PostCSS plugin that rounds sub-pixel values to the nearest full pixel."},{"name":"postcss-rtl","id":"postcss-rtl","keywords":["rtl","ltr"],"description":"PostCSS plugin for RTL-optimizations"},{"name":"@mjhenkes/postcss-rtl","id":"%40mjhenkes%2Fpostcss-rtl","keywords":["rtl","ltr"],"description":"PostCSS plugin for RTL-optimizations"},{"name":"postcss-rtlcss","id":"postcss-rtlcss","keywords":["rtl","ltr"],"description":"PostCSS plugin to build Cascading Style Sheets (CSS) with Left-To-Right (LTR) and Right-To-Left (RTL) rules"},{"name":"@csstools/postcss-sass","id":"%40csstools%2Fpostcss-sass","keywords":["sass","scss","csstools"],"description":"Use Sass as a PostCSS plugin"},{"name":"@csstools/postcss-scope-pseudo-class","id":"%40csstools%2Fpostcss-scope-pseudo-class","keywords":["scope","selector","csstools"],"description":"The Reference Element Pseudo-class: :scope"},{"name":"postcss-scopify","id":"postcss-scopify","keywords":["scope","scoped css","css post processing"],"description":"PostCSS plugin that adds a user input scope to each selector"},{"name":"postcss-selector-not","id":"postcss-selector-not","keywords":["selector"],"description":"PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors"},{"name":"postcss-selector-prefix","id":"postcss-selector-prefix","keywords":["prefix","selector"],"description":"PostCSS plugin to add a selector prefix to all selectors."},{"name":"postcss-selector-rename","id":"postcss-selector-rename","keywords":[],"description":"A PostCSS plugin to rename css selector"},{"name":"@classicmike/postcss-shadrem","id":"%40classicmike%2Fpostcss-shadrem","keywords":[],"description":"This PostCSS plugin replaces standard rem units with a custom shadrem unit to enable REM-like support within Shadow DOM. It uses the font size of the shadow root as the base for shadrem measurements, ensuring consistent styling that adapts to the shadow D"},{"name":"@csstools/postcss-sign-functions","id":"%40csstools%2Fpostcss-sign-functions","keywords":["abs","sign","csstools"],"description":"Use sign and abs functions in CSS"},{"name":"postcss-simple-vars","id":"postcss-simple-vars","keywords":["sass","variables","sponsor"],"description":"PostCSS plugin for Sass-like variables"},{"name":"postcss-single-spa-scoped","id":"postcss-single-spa-scoped","keywords":[],"description":"PostCSS plugin for manipulating the CSS in a single-spa application to best achieve scoped CSS"},{"name":"postcss-size","id":"postcss-size","keywords":[],"description":"PostCSS plugin for size shortcut"},{"name":"@csstools/postcss-slow-plugins","id":"%40csstools%2Fpostcss-slow-plugins","keywords":["debug","performance","profiling","slow","csstools"],"description":"Identify slow plugins in your PostCSS config"},{"name":"postcss-smart-asset","id":"postcss-smart-asset","keywords":["url","inline","base64"],"description":"PostCSS plugin to rebase or inline on url()."},{"name":"postcss-sort-media-queries","id":"postcss-sort-media-queries","keywords":["css-optimizations","desktop-first","media query","responsive-css","combine-media-query","sort-media-query","css-mqpacker","node-css-mqpacker"],"description":"PostCSS plugin for sorting and combining CSS media queries with mobile first / **desktop first methodologies"},{"name":"postcss-sorting","id":"postcss-sorting","keywords":["sorting","order"],"description":"PostCSS plugin to keep rules and at-rules content in order."},{"name":"postcss-spring","id":"postcss-spring","keywords":[],"description":"PostCSS plugin that helps you with spring easings"},{"name":"postcss-stack","id":"postcss-stack","keywords":["z-index"],"description":"A better way to manage z-indexes"},{"name":"@csstools/postcss-stepped-value-functions","id":"%40csstools%2Fpostcss-stepped-value-functions","keywords":["csstools"],"description":"Use round, rem and mod functions in CSS"},{"name":"stylehacks","id":"stylehacks","keywords":[],"description":"Detect/remove browser hacks from CSS files."},{"name":"postcss-svgo","id":"postcss-svgo","keywords":["minify"],"description":"Optimise inline SVG with PostCSS."},{"name":"@csstools/postcss-text-decoration-shorthand","id":"%40csstools%2Fpostcss-text-decoration-shorthand","keywords":["shorthand","csstools"],"description":"Use text-decoration in it's shorthand form in CSS"},{"name":"@wordpress/postcss-themes","id":"%40wordpress%2Fpostcss-themes","keywords":["color"],"description":"PostCSS plugin to generate theme colors."},{"name":"@csstools/postcss-trigonometric-functions","id":"%40csstools%2Fpostcss-trigonometric-functions","keywords":["trigonometric","csstools"],"description":"Use sin(), cos(), tan(), acos(), atan(), and atan2() to compute trigonometric relationships"},{"name":"postcss-typescript-d-ts","id":"postcss-typescript-d-ts","keywords":[],"description":"Generates TypeScript definition (.d.ts) files for each of the postcss modules file"},{"name":"postcss-unique-selectors","id":"postcss-unique-selectors","keywords":[],"description":"Ensure CSS selectors are unique."},{"name":"postcss-unit-processor","id":"postcss-unit-processor","keywords":["unit"],"description":"PostCSS plugin to process css unit."},{"name":"@csstools/postcss-unset-value","id":"%40csstools%2Fpostcss-unset-value","keywords":["csstools"],"description":"Use the unset keyword in CSS."},{"name":"postcss-url","id":"postcss-url","keywords":["url","inline","base64"],"description":"PostCSS plugin to rebase or inline on url()."},{"name":"postcss-urlrebase","id":"postcss-urlrebase","keywords":[],"description":"PostCSS plugin Rebase URLs to a given root URL."},{"name":"postcss-urlrev","id":"postcss-urlrev","keywords":["url"],"description":"PostCSS plugin for css url revision"},{"name":"postcss-utopia","id":"postcss-utopia","keywords":["utopia"],"description":"PostCSS plugin to generate fluid typopgraphy and space scales"},{"name":"postcss-var-func-fallback","id":"postcss-var-func-fallback","keywords":[],"description":"PostCSS plugin Adds fallback values to var(name) occurences."},{"name":"postcss-var-optimize","id":"postcss-var-optimize","keywords":["variables"],"description":"PostCSS plugin to convert css variables that are not redeclared and remove duplicates"},{"name":"postcss-var-replace","id":"postcss-var-replace","keywords":["var","variables","sponsor"],"description":"PostCSS plugin to replace CSS variables with their static values"},{"name":"postcss-variable-compress","id":"postcss-variable-compress","keywords":["minify","cssnano"],"description":"PostCSS plugin cleans up the variable names and saves space. It can will reduce your css variable to smaller variables"},{"name":"postcss-variables-prefixer","id":"postcss-variables-prefixer","keywords":[],"description":"postcss plugin to prefix all css custom properties"},{"name":"postcss-100vh-fix","id":"postcss-100vh-fix","keywords":["safari","sponsor"],"description":"PostCSS plugin to fix height/min-height: 100vh on iOS"},{"name":"postcss-watch-folder","id":"postcss-watch-folder","keywords":[],"description":"PostCSS plugin which watches folder for new files"},{"name":"@tpw/webster-postcss","id":"%40tpw%2Fwebster-postcss","keywords":["webster","tpw"],"description":"A shared PostCSS preset for the Webster framework that can be extended."},{"name":"postcss-will-change","id":"postcss-will-change","keywords":["fallback","sponsor"],"description":"PostCSS plugin to insert 3D hack before will-change property"},{"name":"postcss-windicss","id":"postcss-windicss","keywords":[],"description":"PostCSS plugin for Windi CSS"},{"name":"postcss-zindex","id":"postcss-zindex","keywords":["z-index"],"description":"Reduce z-index values with PostCSS."}]
</script>
</head>
<body>
<img class="csstools-logo" src="./css-tools.svg" alt="CSS Tools" width="220" height="100">
<div class="header">
<img src="./postcss.svg" width="100" height="100" alt="PostCSS logo">
<h1>PostCSS Plugin Directory</h1>
<p>A directory with 248 PostCSS plugins.<br>This list aims to only show plugins that you can use today.</p>
</div>
<h2>Criteria</h2>
<ul>
<li>published on npm</li>
<li>50 monthly downloads from npm</li>
<li><code>postcss-plugin</code> keyword in your <code>package.json</code></li>
<li>valid repository link in your <code>package.json</code></li>
<li>valid homepage link in your <code>package.json</code></li>
<li>valid peer dependency value for postcss</li>
<li><a href="https://opensource.org/licenses/alphabetical">OSI approved license</a></li>
<li>package version greater than 1.0.0</li>
</ul>
<hr>
<h2>Directory</h2>
<div hidden id="detailed-plugin-info">
<input type="checkbox" id="toggle-detailed-plugin-info" name="detailed-plugin-info">
<label for="toggle-detailed-plugin-info">
Show detailed plugin info
</label>
</div>
<div hidden id="search" role="search" aria-label="Plugins">
<label for="search-input">Search all plugins</label><br>
<input type="search" list="search-suggestions" id="search-input" name="search" spellcheck="false">
<datalist id="search-suggestions">
<option value="@apply"><option value="a11y"><option value="abs"><option value="accessibility"><option value="adjusters"><option value="adjustments"><option value="alpha"><option value="alt"><option value="animation"><option value="apply"><option value="ascii-art"><option value="aspect-ratio"><option value="atomizer"><option value="atrule"><option value="auto-theme"><option value="background"><option value="base64"><option value="black"><option value="blackness"><option value="blenda"><option value="blue"><option value="browserslists"><option value="bundler"><option value="button"><option value="calc"><option value="cascade"><option value="clamp"><option value="class apply"><option value="clip-path"><option value="cls"><option value="cmyk"><option value="color"><option value="color space interpolation"><option value="color-convert"><option value="color-mix"><option value="colours"><option value="combine-media-query"><option value="comments"><option value="compatibility"><option value="conditional"><option value="constants"><option value="contains"><option value="content"><option value="contrast"><option value="contrast-color"><option value="counter-style"><option value="css post processing"><option value="css-mqpacker"><option value="css-optimizations"><option value="cssnano"><option value="csstools"><option value="cursor"><option value="custom properties"><option value="custom units"><option value="dark-theme"><option value="debug"><option value="design-tokens"><option value="desktop-first"><option value="dir"><option value="display-p3"><option value="double"><option value="duplicate"><option value="easings"><option value="else"><option value="em"><option value="exp"><option value="exponential"><option value="extend"><option value="fallback"><option value="flex"><option value="focus"><option value="focus-visible"><option value="font-face"><option value="font-family"><option value="fontpie"><option value="fonts"><option value="gamut mapping"><option value="gap"><option value="glob"><option value="glyph"><option value="gradients"><option value="green"><option value="grid"><option value="gutters"><option value="has"><option value="hex"><option value="hexadecimal"><option value="hover"><option value="hsl"><option value="hsla"><option value="hue"><option value="hue interpolation method"><option value="hwb"><option value="hypot"><option value="ic"><option value="if"><option value="image"><option value="image-set"><option value="import"><option value="important"><option value="inline"><option value="interpolation"><option value="keyframes"><option value="lab"><option value="layers"><option value="lch"><option value="lightness"><option value="linear"><option value="log"><option value="logical"><option value="ltr"><option value="matches"><option value="math"><option value="max"><option value="media"><option value="media query"><option value="merge-at-rules"><option value="min"><option value="minifier"><option value="minify"><option value="mixin"><option value="modifications"><option value="mods"><option value="nested"><option value="node-css-mqpacker"><option value="oklab"><option value="oklch"><option value="order"><option value="overscroll-behavior"><option value="p3"><option value="performance"><option value="position"><option value="pow"><option value="prefix"><option value="productivity"><option value="profiling"><option value="prophoto-rgb"><option value="proportional"><option value="purple"><option value="px"><option value="query"><option value="radial"><option value="random"><option value="rebecca"><option value="rec2020"><option value="red"><option value="relative"><option value="relative color syntax"><option value="rem"><option value="repeating"><option value="reset"><option value="resolution"><option value="responsive-css"><option value="rewrite"><option value="rgb"><option value="rgba"><option value="rtl"><option value="safari"><option value="sass"><option value="saturation"><option value="scope"><option value="scoped css"><option value="scss"><option value="selector"><option value="shade"><option value="shortcut"><option value="shorthand"><option value="sign"><option value="slow"><option value="sort-media-query"><option value="sorting"><option value="specificity"><option value="sponsor"><option value="sqrt"><option value="srgb"><option value="srgb-linear"><option value="styled-js"><option value="theme-switcher"><option value="tint"><option value="token"><option value="tpw"><option value="transparency"><option value="transparent"><option value="trigonometric"><option value="typography"><option value="unit"><option value="url"><option value="utopia"><option value="var"><option value="variables"><option value="vh"><option value="viewport"><option value="vmax"><option value="vmin"><option value="vw"><option value="wcag"><option value="webster"><option value="weights"><option value="white"><option value="whiteness"><option value="wide gamut"><option value="z-index">
</datalist>
</div>
<div id="plugin-list">
<article class="plugin" id="postcss-advanced-variables" style="--random-hue: 310">
<details>
<summary>
<h3>advanced-variables </h3>
<p>Use Sass-like variables, conditionals, and iterators in CSS</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-advanced-variables">npm</a></dt>
<dd>
<code>npm -i postcss-advanced-variables</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-advanced-variables')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>5.0.0</code></dd>
<dt>License</dt>
<dd><code>CC0-1.0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>conditional</li><li>media query</li><li>sass</li><li>scss</li><li>variables</li></ul>
<a class="plugin-anchor-link" href="#postcss-advanced-variables" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-animations" style="--random-hue: 4680">
<details>
<summary>
<h3>animations </h3>
<p>PostCSS plugin that adds `@keyframes` from animate.css, tuesday.css, magic.css, mimic.css</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-animations">npm</a></dt>
<dd>
<code>npm -i postcss-animations</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-animations')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>8.0.0</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>>=8.1.0</code></dd>
<dt>Node version range</dt>
<dd><code>>=10</code></dd>
</dl>
<ul><li>animation</li><li>keyframes</li></ul>
<a class="plugin-anchor-link" href="#postcss-animations" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-aspect-ratio-property" style="--random-hue: 4680">
<details>
<summary>
<h3>aspect-ratio-property </h3>
<p>PostCSS plugin CSS4 aspect-ratio property</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-aspect-ratio-property">npm</a></dt>
<dd>
<code>npm -i postcss-aspect-ratio-property</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-aspect-ratio-property')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>1.0.0</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.1.0</code></dd>
<dt>Node version range</dt>
<dd><code>>=10.0.0</code></dd>
</dl>
<ul><li>aspect-ratio</li></ul>
<a class="plugin-anchor-link" href="#postcss-aspect-ratio-property" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-assets" style="--random-hue: 4680">
<details>
<summary>
<h3>assets </h3>
<p>PostCSS plugin to manage assets</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-assets">npm</a></dt>
<dd>
<code>npm -i postcss-assets</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-assets')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>6.0.0</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.2.15</code></dd>
<dt>Node version range</dt>
<dd><code>>=10</code></dd>
</dl>
<ul><li>base64</li><li>image</li><li>url</li></ul>
<a class="plugin-anchor-link" href="#postcss-assets" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-atomizer" style="--random-hue: 4680">
<details>
<summary>
<h3>atomizer </h3>
<p>PostCSS Atomizer plugin</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-atomizer">npm</a></dt>
<dd>
<code>npm -i postcss-atomizer</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-atomizer')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>1.0.2</code></dd>
<dt>License</dt>
<dd><code>BSD-3-Clause</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.3.0</code></dd>
<dt>Node version range</dt>
<dd><code>>=16.0</code></dd>
</dl>
<ul><li>atomizer</li></ul>
<a class="plugin-anchor-link" href="#postcss-atomizer" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-attribute-case-insensitive" style="--random-hue: 4680">
<details>
<summary>
<h3>attribute-case-insensitive </h3>
<p>Enable support for case insensitive attribute matching in selectors</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-attribute-case-insensitive">npm</a></dt>
<dd>
<code>npm -i postcss-attribute-case-insensitive</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-attribute-case-insensitive')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>7.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<a class="plugin-anchor-link" href="#postcss-attribute-case-insensitive" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="autoprefixer" style="--random-hue: 4680">
<details>
<summary>
<h3>autoprefixer </h3>
<p>Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/autoprefixer">npm</a></dt>
<dd>
<code>npm -i autoprefixer</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i autoprefixer')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>10.4.21</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.1.0</code></dd>
<dt>Node version range</dt>
<dd><code>^10 || ^12 || >=14</code></dd>
</dl>
<ul><li>prefix</li></ul>
<a class="plugin-anchor-link" href="#autoprefixer" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-better-units" style="--random-hue: 4680">
<details>
<summary>
<h3>better-units </h3>
<p>A PostCSS plugin to define, transform, and manage custom or existing CSS units with ease.</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-better-units">npm</a></dt>
<dd>
<code>npm -i postcss-better-units</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-better-units')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>1.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.5.3</code></dd>
<dt>Node version range</dt>
<dd><code>>=22.0.0</code></dd>
</dl>
<ul><li>custom units</li></ul>
<a class="plugin-anchor-link" href="#postcss-better-units" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="css-blank-pseudo" style="--random-hue: 20">
<details>
<summary>
<h3>blank-pseudo </h3>
<p>Style form elements when they are empty</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/css-blank-pseudo">npm</a></dt>
<dd>
<code>npm -i css-blank-pseudo</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i css-blank-pseudo')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>7.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT-0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>a11y</li><li>accessibility</li><li>selector</li></ul>
<a class="plugin-anchor-link" href="#css-blank-pseudo" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-browser-comments" style="--random-hue: 4680">
<details>
<summary>
<h3>browser-comments </h3>
<p>Keep only the CSS you need based on comments and your browserslist</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-browser-comments">npm</a></dt>
<dd>
<code>npm -i postcss-browser-comments</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-browser-comments')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>6.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT-0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>browserslists</li></ul>
<a class="plugin-anchor-link" href="#postcss-browser-comments" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="%40csstools%2Fpostcss-bundler" style="--random-hue: 250">
<details>
<summary>
<h3>bundler <span style="font-size: 0.8em;">(csstools)</span></h3>
<p>Bundle CSS</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/@csstools/postcss-bundler">npm</a></dt>
<dd>
<code>npm -i @csstools/postcss-bundler</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i @csstools/postcss-bundler')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>2.0.6</code></dd>
<dt>License</dt>
<dd><code>MIT-0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>bundler</li><li>import</li><li>url</li></ul>
<a class="plugin-anchor-link" href="#%40csstools%2Fpostcss-bundler" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-calc" style="--random-hue: 4680">
<details>
<summary>
<h3>calc </h3>
<p>PostCSS plugin to reduce calc()</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-calc">npm</a></dt>
<dd>
<code>npm -i postcss-calc</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-calc')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>10.1.1</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4.38</code></dd>
<dt>Node version range</dt>
<dd><code>^18.12 || ^20.9 || >=22.0</code></dd>
</dl>
<ul><li>calc</li></ul>
<a class="plugin-anchor-link" href="#postcss-calc" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="%40csstools%2Fpostcss-cascade-layers" style="--random-hue: 100">
<details>
<summary>
<h3>cascade-layers <span style="font-size: 0.8em;">(csstools)</span></h3>
<p>Use cascade layers in CSS</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/@csstools/postcss-cascade-layers">npm</a></dt>
<dd>
<code>npm -i @csstools/postcss-cascade-layers</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i @csstools/postcss-cascade-layers')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>5.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT-0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>cascade</li><li>layers</li><li>selector</li><li>specificity</li></ul>
<a class="plugin-anchor-link" href="#%40csstools%2Fpostcss-cascade-layers" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-clamp" style="--random-hue: 4680">
<details>
<summary>
<h3>clamp </h3>
<p>PostCSS plugin to transform clamp() to combination of min/max</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-clamp">npm</a></dt>
<dd>
<code>npm -i postcss-clamp</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-clamp')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>4.1.0</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4.6</code></dd>
<dt>Node version range</dt>
<dd><code>>=7.6.0</code></dd>
</dl>
<ul><li>clamp</li><li>max</li><li>min</li></ul>
<a class="plugin-anchor-link" href="#postcss-clamp" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-class-apply" style="--random-hue: 4680">
<details>
<summary>
<h3>class-apply </h3>
<p>PostCSS plugin enabling custom class sets like tailwind css</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-class-apply">npm</a></dt>
<dd>
<code>npm -i postcss-class-apply</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-class-apply')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>4.0.1</code></dd>
<dt>License</dt>
<dd><code>Unlicense</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4.1</code></dd>
</dl>
<ul><li>@apply</li><li>apply</li><li>class apply</li></ul>
<a class="plugin-anchor-link" href="#postcss-class-apply" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-classes-to-mixins" style="--random-hue: 310">
<details>
<summary>
<h3>classes-to-mixins </h3>
<p>PostCSS plugin to intelligently convert CSS classes to SASS, Less and Stylus mixins</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-classes-to-mixins">npm</a></dt>
<dd>
<code>npm -i postcss-classes-to-mixins</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-classes-to-mixins')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>3.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.3.6</code></dd>
</dl>
<ul><li>mixin</li><li>sass</li></ul>
<a class="plugin-anchor-link" href="#postcss-classes-to-mixins" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-clip-path-polyfill" style="--random-hue: 4680">
<details>
<summary>
<h3>clip-path-polyfill </h3>
<p>Generates SVG fallback for clip-path properties to make it works in Firefox</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-clip-path-polyfill">npm</a></dt>
<dd>
<code>npm -i postcss-clip-path-polyfill</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-clip-path-polyfill')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>1.1.0</code></dd>
<dt>License</dt>
<dd><code>ISC</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.0.0</code></dd>
</dl>
<ul><li>clip-path</li></ul>
<a class="plugin-anchor-link" href="#postcss-clip-path-polyfill" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="cnjm-postcss-px-to-viewport" style="--random-hue: 4680">
<details>
<summary>
<h3>cnjm-postcss-px-to-viewport </h3>
<p>A CSS post-processor that converts px to viewport units (vw, vh, vmin, vmax).</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/cnjm-postcss-px-to-viewport">npm</a></dt>
<dd>
<code>npm -i cnjm-postcss-px-to-viewport</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i cnjm-postcss-px-to-viewport')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>1.0.1</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4.14</code></dd>
</dl>
<ul><li>px</li><li>vh</li><li>viewport</li><li>vmax</li><li>vmin</li><li>vw</li></ul>
<a class="plugin-anchor-link" href="#cnjm-postcss-px-to-viewport" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-color-converter" style="--random-hue: 140">
<details>
<summary>
<h3>color-converter </h3>
<p>PostCSS plugin for convert colors.</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-color-converter">npm</a></dt>
<dd>
<code>npm -i postcss-color-converter</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-color-converter')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>1.1.2</code></dd>
<dt>License</dt>
<dd><code>MIT</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.0.0</code></dd>
<dt>Node version range</dt>
<dd><code>>=8.3.0</code></dd>
</dl>
<ul><li>color</li></ul>
<a class="plugin-anchor-link" href="#postcss-color-converter" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="%40csstools%2Fpostcss-color-function" style="--random-hue: 140">
<details>
<summary>
<h3>color-function <span style="font-size: 0.8em;">(csstools)</span></h3>
<p>Use the color() function in CSS</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/@csstools/postcss-color-function">npm</a></dt>
<dd>
<code>npm -i @csstools/postcss-color-function</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i @csstools/postcss-color-function')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>4.0.8</code></dd>
<dt>License</dt>
<dd><code>MIT-0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>color</li><li>display-p3</li><li>prophoto-rgb</li><li>rec2020</li><li>rgb</li><li>rgba</li><li>srgb-linear</li></ul>
<a class="plugin-anchor-link" href="#%40csstools%2Fpostcss-color-function" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-color-functional-notation" style="--random-hue: 140">
<details>
<summary>
<h3>color-functional-notation </h3>
<p>Use space and slash separated color notation in CSS</p>
</summary>
<dl>
<dt><a href="https://www.npmjs.com/package/postcss-color-functional-notation">npm</a></dt>
<dd>
<code>npm -i postcss-color-functional-notation</code>
<button
class="button-copy-npm-cmd"
onclick="navigator.clipboard.writeText('npm -i postcss-color-functional-notation')"
aria-label="Copy npm install command to clipboard"
title="Copy to clipboard"
>✄</button>
</dd>
<dt>Version</dt>
<dd><code>7.0.8</code></dd>
<dt>License</dt>
<dd><code>MIT-0</code></dd>
<dt>PostCSS version range</dt>
<dd><code>^8.4</code></dd>
<dt>Node version range</dt>
<dd><code>>=18</code></dd>
</dl>
<ul><li>color</li><li>hsl</li><li>hsla</li><li>hwb</li><li>rgb</li><li>rgba</li></ul>
<a class="plugin-anchor-link" href="#postcss-color-functional-notation" title="Link to this item">
<span class="plugin-anchor-link__icon" aria-hidden="true">☞</span>
</a>
</details>
</article>
<article class="plugin" id="postcss-color-hex-alpha" style="--random-hue: 140">
<details>
<summary>
<h3>color-hex-alpha </h3>
<p>Use 4 & 8 character hex color notation in CSS</p>
</summary>