-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathicons.less
1012 lines (985 loc) · 70 KB
/
icons.less
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
.icon:before{
font-weight: normal;
font-style: normal;
text-align: center;
width: 16px;
line-height: 1;
position: relative;
display: inline-block;
-webkit-font-smoothing: antialiased;
}
// Tweak Atom's default icon classes
.header > .icon-repo:before { top: 1px; text-align: left; }
.header > .icon-file-directory:before { top: 1px }
// Avoid enforcing fixed-width icons in tabs
.tab > .icon:before { width: auto; }
// ... unless the theme uses proportional units
.theme-one-dark-ui,
.theme-one-light-ui{
.tab-bar .tab > .title.icon:before{
font-size: 1.1em;
margin-right: .3em;
width: 1em;
top: auto;
}
}
// Turn off antialiasing for macOS
.thicken{
-webkit-font-smoothing: subpixel-antialiased;
}
// Accentuate an icon's edges
.sharpen{
text-shadow: 0 0 0;
}
/*============================================================================*
Octicons
https://github.com/github/octicons
/*============================================================================*/
.octicons { font-family: "Octicons Regular"; font-size: 16px; top: 1px; }
.binary-icon:before { .octicons; content: "\f094"; }
.book-icon:before { .octicons; content: "\f007"; }
.checklist-icon:before { .octicons; content: "\f076"; font-size: 17px; left: 1px; }
.code-icon:before { .octicons; content: "\f05f"; }
.database-icon:before { .octicons; content: "\f096"; }
.gear-icon:before { .octicons; content: "\f02f"; }
.git-commit-icon:before { .octicons; content: "\f01f"; }
.git-merge-icon:before { .octicons; content: "\f023"; }
.github-icon:before { .octicons; content: "\f00a"; }
.graph-icon:before { .octicons; content: "\f043"; }
.image-icon:before { .octicons; content: "\f012"; }
.key-icon:before { .octicons; content: "\f049"; }
.link-icon:before { .octicons; content: "\f0b0"; }
.markdown-icon:before { .octicons; content: "\f0c9"; }
.package-icon:before { .octicons; content: "\f0c4"; }
.ruby-icon:before { .octicons; content: "\f047"; }
.secret-icon:before { .octicons; content: "\f08c"; }
.squirrel-icon:before { .octicons; content: "\f0b2"; font-size: 15px; }
.text-icon:before { .octicons; content: "\f011"; }
.zip-icon:before { .octicons; content: "\f013"; }
/*============================================================================*
FontAwesome
https://fontawesome.com/v4.7.0/cheatsheet/
/*============================================================================*/
.fa { font-family: FontAwesome; font-size: 13px; }
.anchor-icon:before { .fa; content: "\f13d"; font-size: 16px; top: 1px; }
.android-icon:before { .fa; content: "\f17b"; font-size: 16px; top: 1px; }
.at-icon:before { .fa; content: "\f1fa"; font-size: 15px; top: 1px; }
.audio-icon:before { .fa; content: "\f028"; font-size: 15px; top: 1px; }
.backup-icon:before { .fa; content: "\f1da"; font-size: 13px; top: 1px; }
.bitcoin-icon:before { .fa; content: "\f15a"; font-size: 16px; top: 1px; }
.book-alt-icon:before { .fa; content: "\f02d"; font-size: 16px; top: 2px; }
.bullhorn-icon:before { .fa; content: "\f0a1"; font-size: 16px; top: 2px; }
.calc-icon:before { .fa; content: "\f1ec"; font-size: 14px; }
.coffee-icon:before { .fa; content: "\f0f4"; font-size: 14px; top: 1px; }
.css3-icon:before { .fa; content: "\f13c"; top: 0; }
.circle-icon:before { .fa; content: "\f111"; font-size: 16px; top: 1px; }
.download-icon:before { .fa; content: "\f019"; font-size: 16px; top: 2px; }
.earth-icon:before { .fa; content: "\f0ac"; font-size: 15px; }
.filter-icon:before { .fa; content: "\f0b0"; font-size: 16px; }
.gears-icon:before { .fa; content: "\f085"; font-size: 15px; }
.html5-icon:before { .fa; content: "\f13b"; font-size: 15px; top: 1px; }
.lock-icon:before { .fa; content: "\f023"; font-size: 17px; top: 2px; }
.mobile-icon:before { .fa; content: "\f10b"; font-size: 20px; top: 2px; }
.moon-icon:before { .fa; content: "\f186"; font-size: 16px; top: 1px; }
.music-icon:before { .fa; content: "\f001"; font-size: 15px; }
.print-icon:before { .fa; content: "\f02f"; font-size: 15px; top: 2px; }
.question-icon:before { .fa; content: "\f059"; font-size: 16px; top: 1px; }
.recycle-icon:before { .fa; content: "\f1b8"; font-size: 15px; top: 2px; }
.rss-icon:before { .fa; content: "\f143"; font-size: 16px; top: 2px; }
.scales-icon:before { .fa; content: "\f24e"; font-size: 15px; top: 1px; .tree-view &{ left: -1px; }}
.smarty-icon:before { .fa; content: "\f0eb"; font-size: 15px; }
.sourcemap-icon:before { .fa; content: "\f279"; font-size: 14px; }
.sun-icon:before { .fa; content: "\f185"; font-size: 14px; .thicken; }
.toc-icon:before { .fa; content: "\f03a"; font-size: 15px; top: 2px; }
.wechat-icon:before { .fa; content: "\f1d7"; font-size: 16px; top: 2px; }
/*============================================================================*
Mfizz
http://mfizz.com/oss/font-mfizz
/*============================================================================*/
.mf { font-family: Mfizz; font-size: 14px; }
.apache-icon:before { .mf; content: "\f102"; top: 3px; font-size: 15px; }
.archlinux-icon:before { .mf; content: "A"; top: 1px; font-size: 15px; }
.c-icon:before { .mf; content: "\f106"; top: 1px; font-size: 13px; }
.cpp-icon:before { .mf; content: "\f10b"; top: 1px; }
.csharp-icon:before { .mf; content: "\f10c"; top: 1px; }
.debian-icon:before { .mf; content: "\f111"; top: 1px; }
.elixir-icon:before { .mf; content: "\f113"; top: 1px; }
.gnome-icon:before { .mf; content: "\f119"; top: 1px; }
.haskell-icon:before { .mf; content: "\f121"; top: 2px; font-size: 16px; }
.java-icon:before { .mf; content: "\f126"; top: 2px; font-size: 16px; }
.js-icon:before { .mf; content: "\f129"; top: 1px; font-size: 14px; }
.msql-icon:before { .mf; content: "\f136"; top: 2px; font-size: 15px; .sharpen; }
.objc-icon:before { .mf; content: "\f13e"; top: 2px; font-size: 16px; }
.osx-icon:before { .mf; content: "\f141"; top: 1px; }
.pgsql-icon:before { .mf; content: "\f14a"; top: 2px; font-size: 16px; }
.python-icon:before { .mf; content: "\f14c"; top: 1px; }
.red-hat-icon:before { .mf; content: "\f14e"; top: 2px; }
.scala-icon:before { .mf; content: "\f154"; top: 1px; }
.sql-icon:before { .mf; content: "\f10e"; top: 1px; }
.svg-icon:before { .mf; content: "\f15c"; top: 1px; }
.x11-icon:before { .mf; content: "\f16e"; top: 1px; font-size: 13px; }
/*============================================================================*
Devicons
http://vorillaz.github.io/devicons
/*============================================================================*/
.devicons { font-family: Devicons; font-size: 16px; top: 3px; }
.angular-icon:before { .devicons; content: "\e653"; }
.appcelerator-icon:before { .devicons; content: "\e6ab"; }
.appstore-icon:before { .devicons; content: "\e613"; }
.asp-icon:before { .devicons; content: "\e67f"; }
.atom-icon:before { .devicons; content: "\e664"; .thicken; }
.backbone-icon:before { .devicons; content: "\e652"; }
.bitbucket-icon:before { .devicons; content: "\e603"; }
.bootstrap-icon:before { .devicons; content: "\e647"; font-size: 15px; top: 2px; }
.bower-icon:before { .devicons; content: "\e64d"; .sharpen; }
.chrome-icon:before { .devicons; content: "\e643"; }
.clojure-icon:before { .devicons; content: "\e668"; .thicken; }
.compass-icon:before { .devicons; content: "\e661"; font-size: 14px; top: 2px; }
.dart-icon:before { .devicons; content: "\e698"; font-size: 15px; top: 2px; }
.dlang-icon:before { .devicons; content: "\e6af"; }
.dojo-icon:before { .devicons; content: "\e61c"; font-size: 16px; top: 4px; transform: scale(1.2); .thicken; }
.dropbox-icon:before { .devicons; content: "\e607"; }
.eclipse-icon:before { .devicons; content: "\e69e"; }
.erlang-icon:before { .devicons; content: "\e6b1"; }
.extjs-icon:before { .devicons; content: "\e68e"; }
.firefox-icon:before { .devicons; content: "\e645"; }
.fsharp-icon:before { .devicons; content: "\e6a7"; left: 1px; top: 2px; }
.git-icon:before { .devicons; content: "\e602"; font-size: 15px; top: 2px; }
.heroku-icon:before { .devicons; content: "\e67b"; }
.jekyll-icon:before { .devicons; content: "\e60d"; font-size: 16px; .sharpen; }
.jquery-icon:before { .devicons; content: "\e650"; font-size: 15px; top: 2px; }
.jqueryui-icon:before { .devicons; content: "\e654"; font-size: 15px; top: 2px; }
.laravel-old-icon:before { .devicons; content: "\e63f"; .thicken; }
.materialize-icon:before { .devicons; content: "\e6b6"; transform: scale(1.2); .thicken; }
.modernizr-icon:before { .devicons; content: "\e620"; }
.mootools-icon:before { .devicons; content: "\e68f"; .sharpen; }
.node-icon:before { .devicons; content: "\e618"; }
.perl-icon:before { .devicons; content: "\e669"; font-size: 15px; top: 2px; }
.prolog-icon:before { .devicons; content: "\e6a1"; }
.rails-icon:before { .devicons; content: "\e63b"; }
.raphael-icon:before { .devicons; content: "\e65f"; font-size: 15px; }
.requirejs-icon:before { .devicons; content: "\e670"; }
.rust-icon:before { .devicons; content: "\e6a8"; }
.safari-icon:before { .devicons; content: "\e648"; }
.sass-icon:before { .devicons; content: "\e64b"; }
.sencha-icon:before { .devicons; content: "\e68c"; }
.snapsvg-icon:before { .devicons; content: "\e65e"; }
.swift-icon:before { .devicons; content: "\e655"; left: -1px; }
.travis-icon:before { .devicons; content: "\e67e"; font-size: 15px; top: 2px; }
.typo3-icon:before { .devicons; content: "\e672"; }
.uikit-icon:before { .devicons; content: "\e673"; font-size: 15px; top: 2px; }
.unity3d-icon:before { .devicons; content: "\e621"; }
.vim-icon:before { .devicons; content: "\e6c5"; }
.vs-icon:before { .devicons; content: "\e60c"; font-size: 14px; top: 2px; }
.windows-icon:before { .devicons; content: "\e60f"; font-size: 14px; top: 2px; }
.yeoman-icon:before { .devicons; content: "\e67a"; }
/*============================================================================*
Custom file icons
See https://github.com/file-icons/icons/blob/master/charmap.md
/*============================================================================*/
.fi { font-family: file-icons; font-size: 15px; }
.test-file { top: 3px; font-size: 17px; }
._1c-icon:before { .fi; content: "\a5ea"; top: 3px; font-size: 16px; }
._1c-alt-icon:before { .fi; content: "\ea28"; top: 3px; font-size: 16px; }
._4d-icon:before { .fi; content: "\eb73"; top: 2px; }
.a-plus-icon:before { .fi; content: "\eb79"; top: 2px; }
.abap-icon:before { .fi; content: "\e92b"; top: 2px; }
.abif-icon:before { .fi; content: "\ea4e"; top: 3px; font-size: 16px; }
.access-icon:before { .fi; content: "\e9ea"; top: 2px; }
.acre-icon:before { .fi; content: "\237a"; top: 3px; font-size: 16px; }
.ada-icon:before { .fi; content: "\e90b"; top: 3px; font-size: 17px; }
.adobe-cc-icon:before { .fi; content: "\eb5e"; top: 3px; font-size: 16px; }
.ae-icon:before { .fi; content: "\e9f3"; top: 2px; }
.affectscript-icon:before { .fi; content: "\eb2c"; top: 3px; font-size: 16px; }
.affinity-icon:before { .fi; content: "\eabb"; top: 2px; }
.agda-icon:before { .fi; content: "\1315a";top: 2px; font-size: 16px; .sharpen; }
.ahk-icon:before { .fi; content: "\e932"; top: 2px; }
.ai-icon:before { .fi; content: "\e6b4"; top: 2px; }
.alacritty-icon:before { .fi; content: "\eb27"; top: 3px; font-size: 16px; }
.alacritty-alt-icon:before { .fi; content: "\eb28"; top: 2px; font-size: 16px; }
.alex-icon:before { .fi; content: "\29cb"; top: 4px; font-size: 16px; .thicken; }
.alloy-icon:before { .fi; content: "\e935"; top: 2px; }
.alpine-icon:before { .fi; content: "\e9ff"; top: 2px; font-size: 16px; }
.ampl-icon:before { .fi; content: "\e94e"; top: 3px; font-size: 16px; left: 1px; }
.amusewiki-icon:before { .fi; content: "\eb32"; top: 3px; font-size: 17px; }
.amx-icon:before { .fi; content: "\e99b"; top: 3px; font-size: 16px; }
.analytica-icon:before { .fi; content: "\eb7d"; top: 2px; }
.angelscript-icon:before { .fi; content: "\ea5b"; top: 4px; font-size: 18px; left: -2px; transform: scale(1.3); .sharpen; }
.animate-icon:before { .fi; content: "\eb41"; top: 2px; }
.animestudio-icon:before { .fi; content: "\eaed"; top: 2px; }
.ansible-icon:before { .fi; content: "\24b6"; top: 2px; }
.ant-icon:before { .fi; content: "\e93e"; top: 4px; font-size: 18px; transform: scale(1.1); }
.antlr-icon:before { .fi; content: "\e92c"; top: 3px; }
.antwar-icon:before { .fi; content: "\2591"; top: 3px; font-size: 16px; }
.anyscript-icon:before { .fi; content: "\eacf"; top: 4px; font-size: 17px; }
.api-icon:before { .fi; content: "\e92d"; top: 2px; }
.apiextractor-icon:before { .fi; content: "\eb99"; top: 2px; font-size: 16px; }
.apl-icon:before { .fi; content: "\234b"; top: 2px; }
.apollo-icon:before { .fi; content: "\1f110";top: 3px; font-size: 16px; }
.apple-icon:before { .fi; content: "\e925"; top: 1px; }
.appveyor-icon:before { .fi; content: "\e923"; top: 2px; }
.arc-icon:before { .fi; content: "\e92f"; top: 2px; }
.arduino-icon:before { .fi; content: "\e930"; top: 3px; font-size: 16px; }
.arttext-icon:before { .fi; content: "\24d0"; top: 2px; }
.arttext4-icon:before { .fi; content: "\1d5ee";top: 2px; }
.as-icon:before { .fi; content: "\e92e"; top: 1px; font-size: 14px; }
.asciidoc-icon:before { .fi; content: "\e918"; top: 1px; font-size: 14px; }
.asciidoctor-icon:before { .fi; content: "\eac7"; top: 2px; font-size: 16px; .sharpen; }
.asm-icon:before { .fi; content: "\eb4f"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-agc-icon:before { .fi; content: "\eb53"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-arm-icon:before { .fi; content: "\eb51"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-avr-icon:before { .fi; content: "\eb6c"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-hitachi-icon:before { .fi; content: "\eb60"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-intel-icon:before { .fi; content: "\eb4e"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-m68k-icon:before { .fi; content: "\eb4d"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-vax-icon:before { .fi; content: "\eb48"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asm-zilog-icon:before { .fi; content: "\eb47"; top: 2px; font-size: 17px; left: -1px; transform: scale(1.1); }
.asymptote-icon:before { .fi; content: "\eae5"; top: 3px; font-size: 16px; .thicken; }
.atoum-icon:before { .fi; content: "\2649"; top: 2px; font-size: 16px; }
.ats-icon:before { .fi; content: "\e934"; top: 2px; }
.audacity-icon:before { .fi; content: "\e9f9"; top: 2px; }
.augeas-icon:before { .fi; content: "\e931"; top: 2px; }
.aurelia-icon:before { .fi; content: "\ea48"; top: 2px; }
.autoit-icon:before { .fi; content: "\e933"; top: 2px; font-size: 16px; }
.automator-icon:before { .fi; content: "\ebb4"; top: 2px; }
.awk-icon:before { .fi; content: "\1f427";top: 3px; font-size: 17px; left: 1px; }
.azurepipelines-icon:before{ .fi; content: "\1f680";top: 2px; }
.avro-icon:before { .fi; content: "\eaa3"; top: 4px; font-size: 16px; left: 1px; transform: scale(1.2); }
.babel-icon:before { .fi; content: "\e91f"; top: 2px; left: 1px; }
.ballerina-icon:before { .fi; content: "\eac8"; top: 2px; font-size: 16px; }
.bazaar-icon:before { .fi; content: "\eacd"; top: 2px; font-size: 16px; .sharpen; }
.bazel-icon:before { .fi; content: "\ead2"; top: 2px; font-size: 16px; .sharpen; }
.behat-icon:before { .fi; content: "\ea89"; top: 2px; }
.bem-icon:before { .fi; content: "\ea59"; top: 2px; }
.bibtex-icon:before { .fi; content: "\e601"; top: 2px; font-size: 16px; .thicken; }
.bikeshed-icon:before { .fi; content: "\1f6b2";top: 1px; font-size: 16px; }
.biml-icon:before { .fi; content: "\eb29"; top: 2px; }
.binder-icon:before { .fi; content: "\eba4"; top: 3px; font-size: 16px; }
.bintray-icon:before { .fi; content: "\ea6e"; top: 2px; }
.bison-icon:before { .fi; content: "\1f402";top: 3px; font-size: 16px; }
.bithound-icon:before { .fi; content: "\ea2a"; top: 2px; }
.blender-icon:before { .fi; content: "\e9fa"; top: 2px; }
.blitzbasic-icon:before { .fi; content: "\eba5"; top: 2px; font-size: 16px; }
.bloc-icon:before { .fi; content: "\eba3"; top: 3px; font-size: 16px; }
.bluespec-icon:before { .fi; content: "\e93c"; top: 1px; font-size: 13px; left: 1px; }
.bnf-icon:before { .fi; content: "\2a74"; top: 4px; font-size: 16px; }
.boo-icon:before { .fi; content: "\e939"; top: 2px; }
.boot-icon:before { .fi; content: "\f103"; top: 2px; font-size: 16px; }
.bors-icon:before { .fi; content: "\1f441";top: 2px; }
.bosque-icon:before { .fi; content: "\eb96"; top: 2px; }
.brain-icon:before { .fi; content: "\e93a"; top: 2px; }
.brakeman-icon:before { .fi; content: "\e9d6"; top: 2px; }
.brew-icon:before { .fi; content: "\1f37a";top: 3px; font-size: 17px; }
.bro-icon:before { .fi; content: "\e93b"; top: 3px; font-size: 16px; }
.broccoli-icon:before { .fi; content: "\e922"; top: 1px; font-size: 14px; }
.brotli-icon:before { .fi; content: "\eaa2"; top: 2px; }
.browserslist-icon:before { .fi; content: "\ea80"; top: 2px; }
.browsersync-icon:before { .fi; content: "b"; top: 2px; }
.brunch-icon:before { .fi; content: "\ea47"; top: 3px; font-size: 17px; left: -1px; }
.buck-icon:before { .fi; content: "\ea46"; top: 2px; }
.buildkite-icon:before { .fi; content: "\ebad"; top: 4px; font-size: 17px; left: -1px; transform: scale(1.1); }
.bundler-icon:before { .fi; content: "\ea45"; top: 2px; font-size: 16px; }
.byond-icon:before { .fi; content: "\e962"; top: 2px; }
.cabal-icon:before { .fi; content: "\e9c2"; top: 2px; }
.caddy-icon:before { .fi; content: "\1f512";top: 2px; }
.caffe-icon:before { .fi; content: "\ea9a"; top: 3px; font-size: 17px; }
.caffe2-icon:before { .fi; content: "\eab6"; top: 2px; }
.cake-icon:before { .fi; content: "\e9e3"; top: 2px; }
.cakefile-icon:before { .fi; content: "\e924"; top: 2px; }
.cakephp-icon:before { .fi; content: "\ea43"; top: 2px; }
.calva-icon:before { .fi; content: "\eba1"; top: 3px; font-size: 16px; }
.carthage-icon:before { .fi; content: "\ea98"; top: 2px; }
.casc-icon:before { .fi; content: "\ebb6"; top: 2px; font-size: 17px; }
.cc-icon:before { .fi; content: "\e9d5"; top: 2px; font-size: 16px; }
.cdf-icon:before { .fi; content: "\eb46"; top: 2px; font-size: 16px; }
.ceylon-icon:before { .fi; content: "\e94f"; top: 2px; }
.cf-icon:before { .fi; content: "\e929"; top: 2px; }
.chai-icon:before { .fi; content: "c"; top: 3px; font-size: 16px; }
.chapel-icon:before { .fi; content: "\e950"; top: 2px; }
.chartjs-icon:before { .fi; content: "\ea0b"; top: 2px; }
.cheetah3d-icon:before { .fi; content: "\1f406";top: 2px; font-size: 16px; .sharpen; }
.chef-icon:before { .fi; content: "\ea42"; top: 2px; }
.chocolatey-icon:before { .fi; content: "\1f36b";top: 3px; font-size: 17px; }
.chuck-icon:before { .fi; content: "\e943"; top: 2px; }
.circleci-icon:before { .fi; content: "\ea12"; top: 2px; font-size: 14px; }
.cirru-icon:before { .fi; content: "\e951"; top: 2px; .sharpen; }
.cl-icon:before { .fi; content: "\e972"; top: 2px; .sharpen; }
.clarion-icon:before { .fi; content: "\e952"; top: 1px; font-size: 14px; left: 1px; }
.clean-icon:before { .fi; content: "\e95b"; top: 2px; font-size: 16px; }
.click-icon:before { .fi; content: "\e95c"; top: 2px; }
.clips-icon:before { .fi; content: "\e940"; top: 3px; font-size: 18px; }
.cljs-icon:before { .fi; content: "\f104"; top: 2px; }
.closure-tpl-icon:before { .fi; content: "\ea82"; top: 2px; }
.cloudfoundry-icon:before { .fi; content: "\ead0"; top: 2px; }
.cmake-icon:before { .fi; content: "\e93f"; top: 1px; font-size: 14px; }
.cnab-icon:before { .fi; content: "\ebb5"; top: 2px; font-size: 16px; }
.cobol-icon:before { .fi; content: "\ea44"; top: 2px; font-size: 16px; }
.cocoapods-icon:before { .fi; content: "\ea97"; top: 2px; }
.codacy-icon:before { .fi; content: "\ea8b"; top: 2px; }
.codecov-icon:before { .fi; content: "\2602"; top: 2px; }
.codekit-icon:before { .fi; content: "\ea41"; top: 2px; }
.codemeta-icon:before { .fi; content: "\eb8f"; top: 2px; }
.codeship-icon:before { .fi; content: "\ea6a"; top: 2px; }
.commitlint-icon:before { .fi; content: "\1f191";top: 2px; }
.composer-icon:before { .fi; content: "\e683"; top: 3px; font-size: 17px; }
.conan-icon:before { .fi; content: "\ead1"; top: 2px; }
.conda-icon:before { .fi; content: "\eb3c"; top: 2px; font-size: 16px; }
.config-icon:before { .fi; content: "\f07c"; top: 2px; font-size: 14px; }
.config-coffee-icon:before { .fi; content: "\eb18"; top: 3px; font-size: 17px; }
.config-go-icon:before { .fi; content: "\eb12"; top: 3px; font-size: 18px; }
.config-hs-icon:before { .fi; content: "\eb14"; top: 3px; font-size: 17px; }
.config-js-icon:before { .fi; content: "\eb1a"; top: 3px; font-size: 17px; }
.config-perl-icon:before { .fi; content: "\eb19"; top: 3px; font-size: 17px; }
.config-python-icon:before { .fi; content: "\eb15"; top: 3px; font-size: 17px; }
.config-react-icon:before { .fi; content: "\eb16"; top: 3px; font-size: 17px; }
.config-ruby-icon:before { .fi; content: "\eb17"; top: 3px; font-size: 17px; }
.config-rust-icon:before { .fi; content: "\eb13"; top: 3px; font-size: 17px; }
.config-ts-icon:before { .fi; content: "\eb1b"; top: 3px; font-size: 17px; }
.conll-icon:before { .fi; content: "\eaa6"; top: 2px; }
.coq-icon:before { .fi; content: "\e95f"; top: 2px; font-size: 16px; left: 1px; }
.cordova-icon:before { .fi; content: "\ea11"; top: 2px; }
.corel-icon:before { .fi; content: "\ea91"; top: 3px; font-size: 16px; }
.coreldraw-icon:before { .fi; content: "\ea90"; top: 2px; }
.coveralls-icon:before { .fi; content: "\272a"; top: 2px; }
.cp-icon:before { .fi; content: "\e942"; top: 3px; font-size: 17px; }
.cpan-icon:before { .fi; content: "\ea87"; top: 2px; }
.cpcdosc-icon:before { .fi; content: "\eb8d"; top: 2px; font-size: 16px; }
.crafttweaker-icon:before { .fi; content: "\eb89"; top: 2px; font-size: 17px; }
.creole-icon:before { .fi; content: "\e95e"; top: 2px; }
.crowdin-icon:before { .fi; content: "\ead3"; top: 2px; font-size: 16px; .sharpen; }
.crystal-icon:before { .fi; content: "\e902"; top: 2px; left: 1px; }
.csound-icon:before { .fi; content: "\e9f0"; top: 2px; }
.csscript-icon:before { .fi; content: "\e9e2"; top: 2px; }
.cubit-icon:before { .fi; content: "\eb92"; top: 2px; font-size: 16px; }
.cuneiform-icon:before { .fi; content: "\eb76"; top: 2px; }
.cucumber-icon:before { .fi; content: "\f02b"; top: 3px; }
.curl-icon:before { .fi; content: "/"; top: 3px; font-size: 16px; }
.curry-icon:before { .fi; content: "\eb78"; top: 3px; font-size: 17px; }
.cvs-icon:before { .fi; content: "\1f41f";top: 1px; font-size: 16px; }
.cwl-icon:before { .fi; content: "\29d9"; top: 2px; font-size: 16px; }
.cython-icon:before { .fi; content: "\e963"; top: 2px; }
.d3-icon:before { .fi; content: "\ea10"; top: 2px; }
.dafny-icon:before { .fi; content: "\eb8c"; top: 3px; font-size: 17px; }
.darcs-icon:before { .fi; content: "\e964"; top: 2px; }
.dashboard-icon:before { .fi; content: "\f07d"; top: 2px; font-size: 13px; }
.dataweave-icon:before { .fi; content: "\ea99"; top: 2px; }
.dbase-icon:before { .fi; content: "\e9f1"; top: 2px; }
.dna-icon:before { .fi; content: "\2624"; top: 2px; font-size: 16px; }
.default-icon:before { .fi; content: "\1f5cc";top: 2px; font-size: 14px; }
.delphi-icon:before { .fi; content: "\ea40"; top: 2px; font-size: 16px; }
.deno-icon:before { .fi; content: "\eaef"; top: 2px; font-size: 16px; }
.dependabot-icon:before { .fi; content: "\eb3e"; top: 3px; font-size: 17px; }
.devcontainer-icon:before { .fi; content: "\eb83"; top: 2px; }
.devicetree-icon:before { .fi; content: "\ea57"; top: 2px; font-size: 17px; .sharpen; }
.dhall-icon:before { .fi; content: "\1f58b";top: 3px; font-size: 17px; }
.dia-icon:before { .fi; content: "\eab5"; top: 2px; }
.digdag-icon:before { .fi; content: "\eb03"; top: 2px; }
.diff-icon:before { .fi; content: "\e960"; top: 2px; }
.docbook-icon:before { .fi; content: "\13167";top: 2px; font-size: 16px; }
.docker-icon:before { .fi; content: "\f106"; top: 3px; font-size: 18px; }
.doclets-icon:before { .fi; content: "\ea3f"; top: 2px; }
.docpad-icon:before { .fi; content: "\21b9"; top: 4px; font-size: 17px; }
.docz-icon:before { .fi; content: "\eb21"; top: 3px; font-size: 17px; .sharpen; }
.doge-icon:before { .fi; content: "\e946"; top: 2px; }
.dosbox-icon:before { .fi; content: "\eaf2"; top: 2px; font-size: 16px; }
.dotenv-icon:before { .fi; content: "\ebb8"; top: 2px; }
.dotjs-icon:before { .fi; content: "\eb0b"; top: 2px; font-size: 16px; }
.doxygen-icon:before { .fi; content: "\e928"; top: 1px; font-size: 13px; }
.dragula-icon:before { .fi; content: "\1f44c";top: 3px; font-size: 17px; }
.drawio-icon:before { .fi; content: "\eb93"; top: 2px; }
.drone-icon:before { .fi; content: "\ea3d"; top: 2px; }
.dub-icon:before { .fi; content: "\eba2"; top: 3px; font-size: 17px; }
.dvc-icon:before { .fi; content: "\eb98"; top: 4px; font-size: 17px; transform: scale(1.1); }
.dyalog-icon:before { .fi; content: "\e90c"; top: 1px; font-size: 14px; left: 1px; }
.dylib-icon:before { .fi; content: "\ea15"; top: 2px; }
.e-icon:before { .fi; content: "E"; top: 1px; font-size: 14px; }
.eagle-icon:before { .fi; content: "\e965"; top: 2px; }
.easybuild-icon:before { .fi; content: "\ea85"; top: 2px; }
.ec-icon:before { .fi; content: "\e9c9"; top: 2px; }
.ecere-icon:before { .fi; content: "\e966"; top: 3px; font-size: 16px; }
.eclipse-lang-icon:before { .fi; content: "\eb80"; top: 2px; }
.editorconfig-icon:before { .fi; content: "\ea1b"; top: 3px; }
.edge-icon:before { .fi; content: "\ea78"; top: 2px; }
.eiffel-icon:before { .fi; content: "\e967"; top: 2px; font-size: 16px; }
.ejs-icon:before { .fi; content: "\ea4b"; top: 3px; font-size: 16px; }
.electron-icon:before { .fi; content: "\ea27"; top: 3px; font-size: 16px; .sharpen; }
.elm-icon:before { .fi; content: "\f102"; top: 2px; }
.em-icon:before { .fi; content: "\e968"; top: 3px; font-size: 16px; }
.emacs-icon:before { .fi; content: "\e926"; top: 2px; }
.ember-icon:before { .fi; content: "\e61b"; top: 2px; font-size: 14px; }
.ensime-icon:before { .fi; content: "\ead4"; top: 2px; }
.eq-icon:before { .fi; content: "\ea0a"; top: 5px; }
.esdoc-icon:before { .fi; content: "\ea5c"; top: 2px; }
.eslint-icon:before { .fi; content: "\ea0f"; top: 3px; font-size: 16px; }
.excel-icon:before { .fi; content: "\e9ee"; top: 2px; }
.expo-icon:before { .fi; content: "\eb71"; top: 2px; font-size: 17px; }
.fabric-icon:before { .fi; content: "\1f4dc";top: 3px; font-size: 16px; }
.fabfile-icon:before { .fi; content: "\e94b"; top: 2px; font-size: 16px; }
.factor-icon:before { .fi; content: "\e96a"; top: 3px; font-size: 18px; left: -2px; transform: scale(1.2); }
.falcon-icon:before { .fi; content: "\eae4"; top: 2px; }
.fancy-icon:before { .fi; content: "\e96b"; top: 2px; font-size: 16px; }
.fantom-icon:before { .fi; content: "\e96f"; top: 2px; left: 1px; }
.fauna-icon:before { .fi; content: "\13168";top: 3px; font-size: 17px; }
.faust-icon:before { .fi; content: "\22c0"; top: 2px; }
.fbx-icon:before { .fi; content: "\e9fc"; top: 2px; }
.fexl-icon:before { .fi; content: "\eb20"; top: 4px; font-size: 17px; }
.ff-icon:before { .fi; content: "\fb00"; top: 3px; }
.figma-icon:before { .fi; content: "\ebba"; top: 2px; }
.finaldraft-icon:before { .fi; content: "\1d4bb";top: 2px; font-size: 16px; }
.finder-icon:before { .fi; content: "\e9e9"; top: 3px; font-size: 16px; }
.firebase-icon:before { .fi; content: "\ea7f"; top: 2px; }
.firebase-bolt-icon:before { .fi; content: "\26A1"; top: 3px; }
.flask-icon:before { .fi; content: "\1f704";top: 2px; }
.floobits-icon:before { .fi; content: "\ead5"; top: 3px; font-size: 16px; }
.flow-icon:before { .fi; content: "\e921"; top: 1px; }
.flutter-icon:before { .fi; content: "\eaeb"; top: 2px; left: -1px; }
.flux-icon:before { .fi; content: "\e969"; top: 2px; }
.font-icon:before { .fi; content: "\eaaa"; top: 2px; font-size: 16px; .sharpen; }
.font-bitmap-icon:before { .fi; content: "\eaab"; top: 2px; }
.fork-icon:before { .fi; content: "\2442"; top: 2px; }
.fortran-icon:before { .fi; content: "\e90a"; top: 1px; font-size: 14px; left: 1px; }
.fossa-icon:before { .fi; content: "\eac3"; top: 3px; font-size: 17px; }
.fossil-icon:before { .fi; content: "\ead6"; top: 2px; font-size: 17px; .sharpen; }
.fountain-icon:before { .fi; content: "\1f135";top: 2px; font-size: 16px; }
.franca-icon:before { .fi; content: "\ea56"; top: 2px; }
.freemarker-icon:before { .fi; content: "\e970"; top: 2px; font-size: 16px; left: 1px; }
.frege-icon:before { .fi; content: "\e96e"; top: 2px; font-size: 16px; left: 1px; }
.fthtml-icon:before { .fi; content: "\eb97"; top: 2px; }
.ftr-icon:before { .fi; content: "\2933"; top: 4px; font-size: 18px; transform: scale(1.25); }
.fuelux-icon:before { .fi; content: "\ea09"; top: 3px; font-size: 16px; left: 2px; transform: scale(1.15); .sharpen; }
.fusebox-icon:before { .fi; content: "\ead7"; top: 2px; }
.futhark-icon:before { .fi; content: "\eb77"; top: 3px; font-size: 18px; left: -1px; }
.gams-icon:before { .fi; content: "\e973"; top: 2px; left: 1px; }
.galaxy-icon:before { .fi; content: "\eb74"; top: 2px; }
.galen-icon:before { .fi; content: "\ead8"; top: 2px; }
.gap-icon:before { .fi; content: "\e971"; top: 3px; font-size: 16px; left: 1px; }
.gatsby-icon:before { .fi; content: "\24bc"; top: 2px; }
.gauss-icon:before { .fi; content: "\eb7e"; top: 2px; }
.gdb-icon:before { .fi; content: "\ea08"; top: 3px; font-size: 16px; transform: scale(1.15); .sharpen; }
.genshi-icon:before { .fi; content: "\e976"; top: 3px; }
.genstat-icon:before { .fi; content: "\223f"; top: 2px; }
.gentoo-icon:before { .fi; content: "\e96d"; top: 1px; font-size: 14px; left: 1px; }
.gf-icon:before { .fi; content: "\e978"; top: 2px; }
.gimp-icon:before { .fi; content: "\ea88"; top: 2px; font-size: 17px; transform: scale(1.15); }
.gitlab-icon:before { .fi; content: "\ea3c"; top: 3px; font-size: 16px; }
.gitpod-icon:before { .fi; content: "\1d5a6";top: 2px; }
.glade-icon:before { .fi; content: "\e938"; top: 2px; }
.glide-icon:before { .fi; content: "\eacb"; top: 3px; font-size: 17px; transform: scale(1.15); }
.gltf-icon:before { .fi; content: "\eaa7"; top: 3px; font-size: 17px; }
.glyphs-icon:before { .fi; content: "G"; top: 3px; }
.gml-icon:before { .fi; content: "\e975"; top: 3px; font-size: 16px; }
.gn-icon:before { .fi; content: "\ea25"; top: 2px; }
.gnu-icon:before { .fi; content: "\e679"; top: 2px; font-size: 16px; .sharpen; }
.gnuplot-icon:before { .fi; content: "\1f4c8";top: 3px; font-size: 16px; .sharpen; }
.go-icon:before { .fi; content: "\eaae"; top: 4px; font-size: 18px; left: -1px; }
.godot-icon:before { .fi; content: "\e974"; top: 2px; }
.golo-icon:before { .fi; content: "\e979"; top: 2px; }
.goreleaser-icon:before { .fi; content: "\eb90"; top: 4px; font-size: 18px; left: 1px; }
.gosu-icon:before { .fi; content: "\e97a"; top: 2px; }
.gql-codegen-icon:before { .fi; content: "\ebae"; top: 3px; font-size: 18px; transform: scale(1.1); }
.gradle-icon:before { .fi; content: "\e903"; top: 3px; font-size: 16px; left: 1px; }
.graphite-icon:before { .fi; content: "\ea8a"; top: 2px; font-size: 17px; }
.grapher-icon:before { .fi; content: "\1f4c9";top: 4px; font-size: 17px; }
.graphql-icon:before { .fi; content: "\e97c"; top: 2px; }
.graphviz-icon:before { .fi; content: "\e97d"; top: 4px; font-size: 17px; left: 1px; }
.greenkeeper-icon:before { .fi; content: "\eb0c"; top: 3px; font-size: 16px; }
.gvdesign-icon:before { .fi; content: "\eb02"; top: 2px; }
.gridsome-icon:before { .fi; content: "\eae7"; top: 2px; }
.groovy-icon:before { .fi; content: "\e904"; top: 4px; font-size: 17px; left: -1px; }
.grunt-icon:before { .fi; content: "\e611"; top: 1px; font-size: 14px; }
.gulp-icon:before { .fi; content: "\e610"; top: 2px; font-size: 16px; }
.hack-icon:before { .fi; content: "\e9ce"; top: 2px; }
.haml-icon:before { .fi; content: "\f15b"; top: 2px; }
.hoplon-icon:before { .fi; content: "\ea4d"; top: 2px; }
.harbour-icon:before { .fi; content: "\e97b"; top: 2px; font-size: 16px; .sharpen; }
.hashicorp-icon:before { .fi; content: "\e97e"; top: 2px; }
.haxe-icon:before { .fi; content: "\e907"; top: 2px; }
.haxedevelop-icon:before { .fi; content: "\ea3b"; top: 2px; font-size: 16px; .thicken; }
.helix-icon:before { .fi; content: "\2695"; top: 2px; font-size: 16px; }
.hg-icon:before { .fi; content: "\263f"; top: 2px; }
.hie-icon:before { .fi; content: "\ebab"; top: 4px; font-size: 18px; transform: scale(1.1); }
.hjson-icon:before { .fi; content: "\eac2"; top: 2px; font-size: 16px; .thicken; }
.houdini-icon:before { .fi; content: "\1f300";top: 2px; }
.houndci-icon:before { .fi; content: "\eaaf"; top: 2px; }
.hp-icon:before { .fi; content: "\33cb"; top: 2px; }
.hy-icon:before { .fi; content: "\e97f"; top: 2px; }
.hygen-icon:before { .fi; content: "\1f4c3";top: 2px; font-size: 16px; }
.hyper-icon:before { .fi; content: "\eb37"; top: 2px; }
.kibo-icon:before { .fi; content: "\eba9"; top: 3px; }
.kx-icon:before { .fi; content: "\ea9b"; top: 2px; }
.husky-icon:before { .fi; content: "\1f436";top: 2px; font-size: 17px; .sharpen; }
.icomoon-icon:before { .fi; content: "\eaea"; top: 2px; }
.idl-icon:before { .fi; content: "\e947"; top: 3px; font-size: 18px; }
.idris-icon:before { .fi; content: "\e983"; top: 2px; font-size: 16px; .thicken; }
.igorpro-icon:before { .fi; content: "\e980"; top: 2px; font-size: 16px; .thicken; }
.indesign-icon:before { .fi; content: "\e9f4"; top: 2px; }
.infopath-icon:before { .fi; content: "\ea35"; top: 2px; font-size: 16px; }
.inform7-icon:before { .fi; content: "\e984"; top: 2px; font-size: 16px; .sharpen; }
.inkscape-icon:before { .fi; content: "\ea8e"; top: 3px; font-size: 16px; }
.inno-icon:before { .fi; content: "\e985"; top: 2px; }
.imba-icon:before { .fi; content: "\26ff"; top: 2px; font-size: 16px; }
.imgbot-icon:before { .fi; content: "\ebbf"; top: 3px; font-size: 17px; .sharpen; }
.ink-icon:before { .fi; content: "\eace"; top: 2px; font-size: 16px; }
.io-icon:before { .fi; content: "\e981"; top: 1px; font-size: 13px; .thicken; }
.ioke-icon:before { .fi; content: "\e982"; top: 2px; }
.ionic-icon:before { .fi; content: "\f14b"; top: 2px; }
.isabelle-icon:before { .fi; content: "\e945"; top: 2px; font-size: 16px; }
.istanbul-icon:before { .fi; content: "\1f54c";top: 2px; font-size: 17px; }
.j-icon:before { .fi; content: "\e937"; top: 1px; font-size: 13px; }
.jade-icon:before { .fi; content: "\e90d"; top: 1px; font-size: 14px; }
.jake-icon:before { .fi; content: "\e948"; top: 3px; font-size: 16px; }
.janet-icon:before { .fi; content: "\eb2a"; top: 2px; font-size: 17px; }
.jasmine-icon:before { .fi; content: "\ea3a"; top: 3px; font-size: 16px; }
.jenkins-icon:before { .fi; content: "\e667"; top: 3px; font-size: 18px; .sharpen; }
.jest-icon:before { .fi; content: "\ea39"; top: 2px; }
.jolie-icon:before { .fi; content: "\ea75"; top: 2px; }
.jinja-icon:before { .fi; content: "\e944"; top: 2px; }
.jison-icon:before { .fi; content: "\ea55"; top: 2px; }
.jscpd-icon:before { .fi; content: "\eb95"; top: 3px; font-size: 17px; .sharpen; }
.json-icon:before { .fi; content: "\eabe"; top: 2px; }
.json5-icon:before { .fi; content: "\2478"; top: 2px; }
.jsonld-icon:before { .fi; content: "\e958"; top: 3px; font-size: 17px; }
.jsonnet-icon:before { .fi; content: "\eb1e"; top: 3px; font-size: 16px; }
.jsx-icon:before { .fi; content: "\e9e6"; top: 1px; font-size: 14px; }
.julia-icon:before { .fi; content: "\26ec"; top: 1px; font-size: 14px; }
.junos-icon:before { .fi; content: "\ea81"; top: 2px; }
.jupyter-icon:before { .fi; content: "\e987"; top: 3px; font-size: 16px; }
.kaitai-icon:before { .fi; content: "\30ab"; top: 3px; font-size: 16px; }
.karma-icon:before { .fi; content: "\e9cd"; top: 2px; }
.keybase-icon:before { .fi; content: "\eaf8"; top: 2px; font-size: 17px; }
.keynote-icon:before { .fi; content: "\e9e5"; top: 2px; }
.khronos-icon:before { .fi; content: "\e9f8"; top: 2px; }
.kicad-icon:before { .fi; content: "\ea4c"; top: 2px; }
.kitchenci-icon:before { .fi; content: "\ea38"; top: 2px; }
.kivy-icon:before { .fi; content: "\e901"; top: 2px; }
.knockout-icon:before { .fi; content: "\4B"; top: 2px; }
.kos-icon:before { .fi; content: "k"; top: 4px; font-size: 17px; }
.kotlin-icon:before { .fi; content: "\e989"; top: 1px; font-size: 14px; }
.krl-icon:before { .fi; content: "\e988"; top: 1px; font-size: 14px; }
.kubernetes-icon:before { .fi; content: "\2388"; top: 2px; font-size: 16px; }
.kusto-icon:before { .fi; content: "\eb9a"; top: 2px; }
.labview-icon:before { .fi; content: "\e98a"; top: 2px; font-size: 16px; }
.laravel-icon:before { .fi; content: "\e63f"; top: 2px; font-size: 16px; .sharpen; }
.lark-icon:before { .fi; content: "\1316b";top: 3px; font-size: 16px; }
.lasso-icon:before { .fi; content: "\e98c"; top: 2px; left: 1px; }
.latino-icon:before { .fi; content: "\1f426";top: 4px; font-size: 17px; transform: scale(1.25); }
.leaflet-icon:before { .fi; content: "\ea07"; top: 2px; }
.lean-icon:before { .fi; content: "L"; top: 1px; font-size: 13px; }
.lefthook-icon:before { .fi; content: "\eb8b"; top: 3px; font-size: 17px; }
.lein-icon:before { .fi; content: "\f105"; top: 3px; font-size: 16px; .sharpen; transform: scale(1.15); }
.lektor-icon:before { .fi; content: "\eab9"; top: 2px; font-size: 16px; }
.lerna-icon:before { .fi; content: "\ea37"; top: 2px; font-size: 16px; transform: scale(1.15); }
.lex-icon:before { .fi; content: "\101ef";top: 3px; font-size: 16px; }
.lfe-icon:before { .fi; content: "\e94c"; top: 2px; font-size: 16px; }
.lgtm-icon:before { .fi; content: "\1f435";top: 4px; font-size: 17px; transform: scale(1.15); }
.lighthouse-icon:before { .fi; content: "\26ef"; top: 2px; font-size: 16px; }
.lightwave-icon:before { .fi; content: "\e9fb"; top: 2px; }
.lilypond-icon:before { .fi; content: "\1f4ae";top: 2px; font-size: 16px; }
.lime-icon:before { .fi; content: "\ea36"; top: 2px; font-size: 16px; }
.linqpad-icon:before { .fi; content: "\1d6cc";top: 2px; }
.lisp-icon:before { .fi; content: "\e908"; top: 3px; font-size: 17px; }
.llvm-icon:before { .fi; content: "\e91d"; top: 3px; font-size: 17px; }
.logtalk-icon:before { .fi; content: "\e98d"; top: 2px; .sharpen; }
.lolcode-icon:before { .fi; content: "\1f63a";top: 2px; font-size: 16px; .sharpen; }
.lookml-icon:before { .fi; content: "\e98e"; top: 2px; font-size: 16px; .sharpen; }
.ls-icon:before { .fi; content: "\e914"; top: 2px; font-size: 14px; }
.lsl-icon:before { .fi; content: "\e98b"; top: 1px; }
.lua-icon:before { .fi; content: "\e91b"; top: 2px; font-size: 14px; }
.lync-icon:before { .fi; content: "\ead9"; top: 2px; font-size: 16px; }
.macaulay2-icon:before { .fi; content: "\2644"; top: 3px; font-size: 17px; }
.mako-icon:before { .fi; content: "\e98f"; top: 4px; font-size: 16px; }
.manpage-icon:before { .fi; content: "\e936"; top: 3px; }
.mapbox-icon:before { .fi; content: "\e941"; top: 1px; font-size: 13px; }
.marko-icon:before { .fi; content: "\e920"; top: 4px; font-size: 18px; left: -1px; transform: scale(1.05); }
.markdownlint-icon:before { .fi; content: "\f0c9"; top: 3px; font-size: 17px; transform: scale(1.25); transform-origin: 0 60%; }
.mathematica-icon:before { .fi; content: "\e990"; top: 2px; font-size: 16px; }
.mathjax-icon:before { .fi; content: "\ea06"; top: 2px; }
.matlab-icon:before { .fi; content: "\e991"; top: 2px; }
.matroska-icon:before { .fi; content: "\2668"; top: 2px; }
.max-icon:before { .fi; content: "\e993"; top: 2px; }
.maxscript-icon:before { .fi; content: "\e900"; top: 2px; }
.maya-icon:before { .fi; content: "\e9f6"; top: 2px; font-size: 16px; }
.mdx-icon:before { .fi; content: "\eab7"; top: 3px; font-size: 16px; }
.mediawiki-icon:before { .fi; content: "\e954"; top: 2px; font-size: 16px; }
.melpa-icon:before { .fi; content: "\33ab"; top: 2px; font-size: 16px; }
.mercury-icon:before { .fi; content: "\e994"; top: 3px; font-size: 16px; transform: scale(1.2); }
.mermaid-icon:before { .fi; content: "\eb84"; top: 3px; font-size: 17px; }
.meson-icon:before { .fi; content: "\ea54"; top: 2px; }
.metal-icon:before { .fi; content: "M"; top: 1px; left: 1px; }
.metapost-icon:before { .fi; content: "\1d5ac";top: 2px; }
.meteor-icon:before { .fi; content: "\e6a5"; top: 1px; }
.minecraft-icon:before { .fi; content: "\e9dc"; top: 2px; }
.minizinc-icon:before { .fi; content: "\ea53"; top: 2px; }
.mint-icon:before { .fi; content: "\1f33f";top: 2px; font-size: 16px; }
.mirah-icon:before { .fi; content: "\e995"; top: 2px; }
.miranda-icon:before { .fi; content: "\ea52"; top: 3px; font-size: 16px; }
.mirc-icon:before { .fi; content: "\eb3a"; top: 2px; font-size: 16px; }
.mixin-icon:before { .fi; content: "\ebb9"; top: 3px; font-size: 17px; }
.mjml-icon:before { .fi; content: "\ea6f"; top: 2px; }
.mocha-icon:before { .fi; content: "\26fe"; top: 2px; font-size: 17px; }
.model-icon:before { .fi; content: "\e9e8"; top: 2px; font-size: 16px; }
.modernweb-icon:before { .fi; content: "\eb9f"; top: 2px; }
.modula2-icon:before { .fi; content: "\e996"; top: 2px; }
.modula3-icon:before { .fi; content: "\2778"; top: 3px; font-size: 17px; }
.modelica-icon:before { .fi; content: "\eaff"; top: 4px; font-size: 17px; transform: scale(1.2); }
.modo-icon:before { .fi; content: "\f01f"; top: 2px; font-size: 16px; }
.moho-icon:before { .fi; content: "\eaee"; top: 3px; font-size: 16px; }
.moleculer-icon:before { .fi; content: "\eb0e"; top: 3px; font-size: 16px; }
.moment-icon:before { .fi; content: "\1f558";top: 2px; }
.moment-tz-icon:before { .fi; content: "\1f30d";top: 2px; }
.monotone-icon:before { .fi; content: "\1f400";top: 2px; font-size: 18px; }
.monkey-icon:before { .fi; content: "\e997"; top: 3px; font-size: 18px; left: -1px; }
.mruby-icon:before { .fi; content: "\ea18"; top: 2px; }
.msproject-icon:before { .fi; content: "\eae8"; top: 2px; }
.mupad-icon:before { .fi; content: "\e9ca"; top: 3px; font-size: 16px; }
.mustache-icon:before { .fi; content: "\e60f"; top: 2px; font-size: 16px; }
.n64-icon:before { .fi; content: "n"; top: 2px; font-size: 16px; }
.nailpolish-icon:before { .fi; content: "\1f485";top: 3px; font-size: 16px; left: 1px; }
.nano-icon:before { .fi; content: "\ea76"; top: 2px; }
.nanoc-icon:before { .fi; content: "\ea51"; top: 2px; }
.nant-icon:before { .fi; content: "\e9e1"; top: 3px; transform: scale(1.2); }
.nasm-icon:before { .fi; content: "\ea72"; top: 2px; }
.ndepend-icon:before { .fi; content: "\eab4"; top: 2px; }
.neko-icon:before { .fi; content: "\ea05"; top: 2px; }
.neo4j-icon:before { .fi; content: "\eab3"; top: 2px; }
.neon-icon:before { .fi; content: "\eb8e"; top: 2px; }
.nessus-icon:before { .fi; content: "\23e3"; top: 2px; .thicken; }
.netlify-icon:before { .fi; content: "\eabf"; top: 3px; font-size: 16px; }
.commitizen-icon:before { .fi; content: "\ebb3"; top: 3px; font-size: 16px; }
.netlogo-icon:before { .fi; content: "\e99c"; top: 2px; left: 1px; }
.newrelic-icon:before { .fi; content: "\e9d7"; top: 2px; }
.nextflow-icon:before { .fi; content: "\eaa5"; top: 2px; font-size: 16px; }
.nextjs-icon:before { .fi; content: "\24c3"; top: 2px; }
.nestjs-icon:before { .fi; content: "\eac9"; top: 2px; }
.nginx-icon:before { .fi; content:"\f146b"; top: 2px; }
.nib-icon:before { .fi; content: "\2712"; top: 2px; }
.nickle-icon:before { .fi; content: "\a2"; top: 3px; font-size: 16px; }
.nightwatch-icon:before { .fi; content: "\eb08"; top: 3px; font-size: 16px; }
.nimble-icon:before { .fi; content: "\eb85"; top: 3px; font-size: 16px; }
.nimrod-icon:before { .fi; content: "\e998"; top: 2px; }
.nit-icon:before { .fi; content: "\e999"; top: 2px; }
.nix-icon:before { .fi; content: "\e99a"; top: 3px; font-size: 16px; }
.nmap-icon:before { .fi; content: "\e94d"; top: 3px; font-size: 16px; transform: scale(1.1); }
.nodemon-icon:before { .fi; content: "\ea26"; top: 2px; }
.nokogiri-icon:before { .fi; content: "\92f8"; top: 2px; }
.nomad-icon:before { .fi; content: "\ea96"; top: 2px; }
.noon-icon:before { .fi; content: "\eb33"; top: 2px; }
.normalize-icon:before { .fi; content: "\ea04"; top: 3px; font-size: 16px; }
.npm-icon:before { .fi; content: "\e91c"; top: 3px; font-size: 17px; }
.nsis-icon:before { .fi; content: "\ea1e"; top: 3px; font-size: 16px; }
.nsri-icon:before { .fi; content: "\eb2f"; top: 2px; }
.nsri-alt-icon:before { .fi; content: "\eb2b"; top: 2px; font-size: 16px; }
.nuclide-icon:before { .fi; content: "\ea34"; top: 2px; }
.nuget-icon:before { .fi; content: "\e9d9"; top: 2px; }
.numpy-icon:before { .fi; content: "\eba8"; top: 2px; font-size: 14px; }
.nunjucks-icon:before { .fi; content: "\e953"; top: 2px; font-size: 16px; }
.nuxt-icon:before { .fi; content: "\eaca"; top: 2px; font-size: 16px; }
.nwscript-icon:before { .fi; content: "\23ff"; top: 4px; font-size: 17px; transform: scale(1.1); }
.nx-icon:before { .fi; content: "\eb9c"; top: 3px; font-size: 17px; }
.nxc-icon:before { .fi; content: "\ea6b"; top: 2px; font-size: 16px; }
.nvidia-icon:before { .fi; content: "\e95d"; top: 2px; }
.oberon-icon:before { .fi; content: "\eb3f"; top: 3px; font-size: 17px; transform: scale(1.1); }
.objj-icon:before { .fi; content: "\e99e"; top: 2px; }
.ocaml-icon:before { .fi; content: "\e91a"; top: 1px; font-size: 14px; }
.octave-icon:before { .fi; content: "\ea33"; top: 2px; }
.odin-icon:before { .fi; content: "\eb36"; top: 2px; }
.omnigraffle-icon:before { .fi; content: "\ebaf"; top: 2px; font-size: 16px; }
.ogone-icon:before { .fi; content: "\ebaa"; top: 3px; font-size: 16px; }
.onenote-icon:before { .fi; content: "\e9eb"; top: 2px; }
.ooc-icon:before { .fi; content: "\e9cb"; top: 2px; }
.opa-icon:before { .fi; content: "\2601"; top: 2px; }
.openbsd-icon:before { .fi; content: "\1f421";top: 3px; font-size: 17px; .sharpen; transform: scale(1.1); }
.opencl-icon:before { .fi; content: "\e99f"; top: 2px; font-size: 16px; }
.openexr-icon:before { .fi; content: "\1f127";top: 3px; font-size: 16px; }
.opengl-icon:before { .fi; content: "\ea7a"; top: 3px; font-size: 18px; transform: scale(1.1); }
.openoffice-icon:before { .fi; content: "\e9e4"; top: 2px; }
.openpolicy-icon:before { .fi; content: "\eb39"; top: 2px; font-size: 16px; }
.openvms-icon:before { .fi; content: "\eac6"; top: 1px; font-size: 16px; transform: scale(1.1); }
.openvpn-icon:before { .fi; content: "\eaf3"; top: 2px; }
.openzfs-icon:before { .fi; content: "\1d419";top: 2px; font-size: 16px; }
.org-icon:before { .fi; content: "\e917"; top: 1px; font-size: 14px; left: 1px; }
.outlook-icon:before { .fi; content: "\eada"; top: 2px; font-size: 16px; }
.owl-icon:before { .fi; content: "\e957"; top: 2px; }
.ox-icon:before { .fi; content: "\e9a1"; top: 3px; font-size: 16px; .sharpen; }
.oxygene-icon:before { .fi; content: "\e9bf"; top: 2px; }
.oz-icon:before { .fi; content: "\e9be"; top: 2px; }
.p4-icon:before { .fi; content: "\ea50"; top: 2px; }
.pan-icon:before { .fi; content: "\e9bd"; top: 2px; }
.papyrus-icon:before { .fi; content: "\e9bc"; top: 2px; }
.parrot-icon:before { .fi; content: "\e9bb"; top: 3px; font-size: 16px; }
.pascal-icon:before { .fi; content: "\e92a"; top: 2px; }
.patch-icon:before { .fi; content: "\e961"; top: 2px; }
.patreon-icon:before { .fi; content: "\eb42"; top: 2px; }
.pawn-icon:before { .fi; content: "\265f"; top: 1px; font-size: 14px; }
.pcd-icon:before { .fi; content: "\26c5"; top: 2px; font-size: 16px; }
.peg-icon:before { .fi; content: "\ea74"; top: 3px; font-size: 16px; }
.perl6-icon:before { .fi; content: "\e96c"; top: 2px; }
.phalcon-icon:before { .fi; content: "\e94a"; top: 2px; }
.phoenix-icon:before { .fi; content: "\ea5f"; top: 3px; font-size: 17px; transform: scale(1.1); }
.photorec-icon:before { .fi; content: "\ebc0"; top: 2px; font-size: 16px; }
.php-icon:before { .fi; content: "\f147"; top: 1px; font-size: 14px; left: 1px; }
.phpunit-icon:before { .fi; content: "\ea32"; top: 2px; }
.phraseapp-icon:before { .fi; content: "\eadb"; top: 2px; }
.pickle-icon:before { .fi; content: "\e9c4"; top: 2px; }
.pico8-icon:before { .fi; content: "\eabc"; top: 2px; }
.picolisp-icon:before { .fi; content: "\eb25"; top: 3px; font-size: 17px; }
.pike-icon:before { .fi; content: "\e9b9"; top: 4px; font-size: 16px; .thicken; transform: scale(1.15); }
.pinescript-icon:before { .fi; content: "\eb30"; top: 2px; }
.pipenv-icon:before { .fi; content: "\1f381";top: 2px; }
.platformio-icon:before { .fi; content: "\ea2c"; top: 2px; font-size: 16px; }
.pm2-icon:before { .fi; content: "\2630"; top: 3px; }
.pnpm-icon:before { .fi; content: "\eb86"; top: 2px; font-size: 16px; .sharpen; }
.pod-icon:before { .fi; content: "\ea84"; top: 2px; left: 1px; }
.pogo-icon:before { .fi; content: "\e9b8"; top: 3px; font-size: 14px; .thicken; }
.pointwise-icon:before { .fi; content: "\e977"; top: 2px; }
.polymer-icon:before { .fi; content: "\ea2b"; top: 3px; }
.pony-icon:before { .fi; content: "\e9b7"; top: 3px; font-size: 16px; }
.postcss-icon:before { .fi; content: "\e910"; top: 2px; font-size: 14px; }
.postscript-icon:before { .fi; content: "\e955"; top: 2px; left: 1px; }
.povray-icon:before { .fi; content: "P"; top: 2px; left: 1px; }
.powerbuilder-icon:before { .fi; content: "\ea14"; }
.powerpoint-icon:before { .fi; content: "\e9ec"; top: 2px; }
.powershell-icon:before { .fi; content: "\e9da"; top: 2px; font-size: 16px; }
.precommit-icon:before { .fi; content: "\eac1"; top: 2px; }
.premiere-icon:before { .fi; content: "\e9f5"; top: 2px; }
.prettier-icon:before { .fi; content: "\eaa1"; top: 2px; }
.prisma-icon:before { .fi; content: "\eac5"; top: 2px; }
.processing-icon:before { .fi; content: "\e9a0"; top: 2px; }
.progress-icon:before { .fi; content: "\eadc"; top: 2px; }
.proselint-icon:before { .fi; content: "\ea6d"; top: 2px; font-size: 16px; }
.pros-icon:before { .fi; content: "\eaad"; top: 3px; font-size: 16px; }
.propeller-icon:before { .fi; content: "\e9b5"; top: 3px; font-size: 16px; }
.protractor-icon:before { .fi; content: "\e9de"; top: 3px; }
.psd-icon:before { .fi; content: "\e6b8"; top: 2px; }
.publisher-icon:before { .fi; content: "\eadd"; top: 2px; font-size: 16px; }
.pug-alt-icon:before { .fi; content: "\e9d0"; top: 3px; font-size: 16px; }
.pug-icon:before { .fi; content: "\ea13"; top: 3px; font-size: 16px; }
.puppet-icon:before { .fi; content: "\f0c3"; top: 2px; left: 1px; }
.pure-icon:before { .fi; content: "\1f4a7";top: 2px; font-size: 16px; .sharpen; }
.purebasic-icon:before { .fi; content: "\01b5"; top: 2px; }
.purescript-icon:before { .fi; content: "\e9b2"; top: 3px; }
.pullapprove-icon:before { .fi; content: "\293e"; top: 2px; }
.pypi-icon:before { .fi; content: "\ea94"; top: 2px; }
.pyret-icon:before { .fi; content: "\2620"; top: 2px; font-size: 16px; }
.pytest-icon:before { .fi; content: "\eba6"; top: 4px; font-size: 16px; }
.pyup-icon:before { .fi; content: "\eb26"; top: 2px; }
.qiskit-icon:before { .fi; content: "\eb81"; top: 2px; font-size: 16px; .sharpen; }
.qlik-icon:before { .fi; content: "\1f50d";top: 2px; }
.qsharp-icon:before { .fi; content: "\eb91"; top: 3px; font-size: 16px; }
.qt-icon:before { .fi; content: "\eb00"; top: 2px; font-size: 16px; }
.quasar-icon:before { .fi; content: "\eacc"; top: 2px; }
.r-icon:before { .fi; content: "\e905"; top: 3px; font-size: 17px; }
.racket-icon:before { .fi; content: "\e9b1"; top: 2px; left: 1px; }
.raml-icon:before { .fi; content: "\e913"; top: 1px; font-size: 14px; }
.rascal-icon:before { .fi; content: "\ea24"; top: 2px; }
.razzle-icon:before { .fi; content: "R"; top: 2px; }
.rdata-icon:before { .fi; content: "\eb49"; top: 2px; }
.rdoc-icon:before { .fi; content: "\e9b0"; top: 2px; left: 1px; }
.react-icon:before { .fi; content: "\f100"; top: 2px; }
.readthedocs-icon:before { .fi; content: "\2398"; top: 3px; font-size: 16px; }
.reason-icon:before { .fi; content: "\ea1d"; top: 3px; }
.reasonstudios-icon:before { .fi; content: "\eb44"; top: 2px; }
.rebol-icon:before { .fi; content: "\e9ae"; top: 1px; font-size: 13px; }
.red-icon:before { .fi; content: "\eaec"; top: 3px; font-size: 16px; }
.redux-icon:before { .fi; content: "\ea30"; top: 2px; }
.reek-icon:before { .fi; content: "\eaa0"; top: 3px; font-size: 17px; .sharpen; }
.regex-icon:before { .fi; content: "*"; top: 1px; font-size: 12px; left: 1px; }
.remark-icon:before { .fi; content: "\eb1d"; top: 2px; }
.renovate-icon:before { .fi; content: "\eb2d"; top: 2px; font-size: 17px; }
.rescript-icon:before { .fi; content: "\eba7"; top: 3px; font-size: 16px; }
.restql-icon:before { .fi; content: "\ebb0"; top: 2px; font-size: 16px; }
.rexx-icon:before { .fi; content: "\ea16"; top: 2px; font-size: 14px; left: 1px; }
.rhino-icon:before { .fi; content: "\ea4a"; top: 4px; font-size: 16px; left: 1px; transform: scale(1.1); }
.ring-icon:before { .fi; content: "\1f48d";top: 2px; }
.riot-icon:before { .fi; content: "\eb2e"; top: 2px; }
.rmarkdown-icon:before { .fi; content: "\211b"; top: 3px; font-size: 17px; }
.robot-icon:before { .fi; content: "\eb0d"; top: 2px; }
.robots-icon:before { .fi; content: "\1f916";top: 2px; }
.rollup-icon:before { .fi; content: "\ea20"; top: 2px; }
.rspec-icon:before { .fi; content: "\ea31"; top: 3px; font-size: 16px; }
.rst-icon:before { .fi; content: "\e9cc"; top: 3px; font-size: 16px; }
.rstudio-icon:before { .fi; content: "\24c7"; top: 2px; }
.rsync-icon:before { .fi; content: "\eb9e"; top: 3px; font-size: 17px; transform: scale(1.1); }
.rubocop-icon:before { .fi; content: "\eade"; top: 2px; }
.rubygems-icon:before { .fi; content: "\1f48e";top: 3px; font-size: 17px; }
.sac-icon:before { .fi; content: "\203c"; top: 3px; font-size: 16px; }
.sage-icon:before { .fi; content: "\e9ab"; top: 3px; font-size: 16px; .thicken; }
.sails-icon:before { .fi; content: "\eb87"; top: 2px; }
.saltstack-icon:before { .fi; content: "\e915"; top: 2px; font-size: 14px; }
.sas-icon:before { .fi; content: "\e95a"; top: 2px; }
.san-icon:before { .fi; content: "\eae6"; top: 2px; }
.sandbox-icon:before { .fi; content: "\ebb1"; top: 3px; font-size: 16px; }
.sbt-icon:before { .fi; content: "\e9d2"; top: 2px; font-size: 14px; }
.scad-icon:before { .fi; content: "\e911"; top: 2px; font-size: 14px; }
.scd-icon:before { .fi; content: "\e9a2"; top: 2px; }
.scheme-icon:before { .fi; content: "\03bb"; top: 2px; }
.scilab-icon:before { .fi; content: "\e9a9"; top: 3px; font-size: 18px; left: -1px; .thicken; }
.scilla-icon:before { .fi; content: "\eae2"; top: 3px; font-size: 16px; }
.scratch-icon:before { .fi; content: "\a7"; top: 2px; }
.scrutinizer-icon:before { .fi; content: "\e9d4"; top: 2px; font-size: 14px; }
.self-icon:before { .fi; content: "\e9a8"; top: 3px; font-size: 16px; .sharpen; transform: scale(1.2); }
.semrelease-icon:before { .fi; content: "\1f7cd";top: 2px; font-size: 16px; }
.sentry-icon:before { .fi; content: "\eb1c"; top: 3px; font-size: 16px; }
.serverless-icon:before { .fi; content: "\eab8"; top: 2px; }
.sequelize-icon:before { .fi; content: "\ea2f"; top: 3px; font-size: 16px; }
.sf-icon:before { .fi; content: "\e9db"; top: 2px; }
.sgi-icon:before { .fi; content: "\2318"; top: 2px; }
.shadowcljs-icon:before { .fi; content: "\eb88"; top: 2px; font-size: 16px; .thicken; }
.shellcheck-icon:before { .fi; content: "\1f41a";top: 2px; font-size: 17px; }
.shen-icon:before { .fi; content: "\e9a7"; top: 2px; font-size: 16px; }
.shipit-icon:before { .fi; content: "\26f5"; top: 2px; font-size: 16px; transform: scale(1.1); }
.shippable-icon:before { .fi; content: "\ea2d"; top: 2px; }
.shopify-icon:before { .fi; content: "\e9cf"; top: 2px; }
.shuriken-icon:before { .fi; content: "\272b"; top: 2px; font-size: 14px; }
.sigils-icon:before { .fi; content: "\1f764";top: 3px; font-size: 16px; .sharpen; }
.silverstripe-icon:before { .fi; content: "\e800"; top: 2px; }
.sketch-icon:before { .fi; content: "\e927"; top: 2px; }
.sketchup-lo-icon:before { .fi; content: "\ea7c"; top: 2px; }
.sketchup-mk-icon:before { .fi; content: "\ea7e"; top: 2px; }
.sketchup-sb-icon:before { .fi; content: "\ea7d"; top: 2px; }
.slash-icon:before { .fi; content: "\e9a6"; top: 2px; }
.snapcraft-icon:before { .fi; content: "\eb09"; top: 3px; font-size: 16px; }
.snort-icon:before { .fi; content: "\1f43d";top: 3px; font-size: 17px; }
.snowpack-icon:before { .fi; content: "\1f3d4";top: 2px; }
.snyk-icon:before { .fi; content: "\ea1c"; top: 2px; font-size: 16px; }
.solidarity-icon:before { .fi; content: "\1d5e6";top: 2px; }
.solidity-icon:before { .fi; content: "\ea86"; top: 2px; }
.sophia-icon:before { .fi; content: "\eb72"; top: 3px; font-size: 17px; }
.sorbet-icon:before { .fi; content: "\1f366";top: 2px; font-size: 16px; }
.source-icon:before { .fi; content: "\eb82"; top: 2px; }
.spacengine-icon:before { .fi; content: "\29cf"; top: 2px; .sharpen; }
.spacemacs-icon:before { .fi; content: "\eaa4"; top: 2px; }
.sparql-icon:before { .fi; content: "\e959"; top: 2px; }
.sqf-icon:before { .fi; content: "\e9a5"; top: 1px; .sharpen; }
.sqlite-icon:before { .fi; content: "\e9dd"; top: 3px; }
.squarespace-icon:before { .fi; content: "\ea5e"; top: 2px; }
.stan-icon:before { .fi; content: "\e9a4"; top: 2px; }
.stata-icon:before { .fi; content: "\e9a3"; top: 2px; }
.stdlibjs-icon:before { .fi; content: "\eb70"; top: 2px; }
.stencil-icon:before { .fi; content: "\ea95"; top: 2px; }
.stitches-icon:before { .fi; content: "\eba0"; top: 2px; font-size: 16px; .sharpen; }
.storyist-icon:before { .fi; content: "\e9ef"; top: 2px; font-size: 16px; }
.strings-icon:before { .fi; content: "\e9e0"; top: 2px; }
.stylable-icon:before { .fi; content: "\eae0"; top: 2px; }
.storybook-icon:before { .fi; content: "\eadf"; top: 2px; font-size: 16px; }
.stylelint-icon:before { .fi; content: "\e93d"; top: 2px; }
.stylishhaskell-icon:before{ .fi; content: "\eb3d"; top: 3px; font-size: 16px; }
.stylus-icon:before { .fi; content: "s"; top: 2px; left: 1px; }
.sublime-icon:before { .fi; content: "\e986"; top: 2px; }
.svelte-icon:before { .fi; content: "\33dc"; top: 3px; font-size: 16px; }
.svn-icon:before { .fi; content: "\ea17"; top: 2px; }
.swagger-icon:before { .fi; content: "\ea29"; top: 2px; }
.sysverilog-icon:before { .fi; content: "\e9c3"; top: 2px; }
.tag-icon:before { .fi; content: "\f015"; top: 2px; font-size: 14px; }
.tailwind-icon:before { .fi; content: "\301c"; top: 3px; font-size: 17px; }
.tcl-icon:before { .fi; content: "\e956"; top: 2px; font-size: 16px; }
.telegram-icon:before { .fi; content: "\2708"; top: 2px; }
.templeos-icon:before { .fi; content: "\2696"; top: 4px; font-size: 18px; }
.terminal-icon:before { .fi; content: "\f0c8"; top: 2px; font-size: 14px; }
.tern-icon:before { .fi; content: "\1f54a";top: 4px; font-size: 16px; }
.terraform-icon:before { .fi; content: "\e916"; top: 1px; font-size: 14px; }
.terser-icon:before { .fi; content: "\272c"; top: 2px; }
.testcafe-icon:before { .fi; content: "\2714"; top: 3px; font-size: 17px; }
.test-coffee-icon:before { .fi; content: "\ea62"; .test-file; }
.test-dir-icon:before { .fi; content: "\ea60"; top: 2px; }
.test-generic-icon:before { .fi; content: "\ea63"; .test-file; }
.test-go-icon:before { .fi; content: "\eb0f"; .test-file; }
.test-hs-icon:before { .fi; content: "\eb10"; .test-file; }
.test-js-icon:before { .fi; content: "\ea64"; .test-file; }
.test-perl-icon:before { .fi; content: "\ea65"; .test-file; }
.test-python-icon:before { .fi; content: "\ea66"; .test-file; }
.test-react-icon:before { .fi; content: "\ea67"; .test-file; }
.test-ruby-icon:before { .fi; content: "\ea68"; .test-file; }
.test-rust-icon:before { .fi; content: "\eb11"; .test-file; }
.test-ts-icon:before { .fi; content: "\ea69"; .test-file; }
.tex-icon:before { .fi; content: "\e600"; top: 4px; font-size: 16px; .thicken; }
.textile-icon:before { .fi; content: "t"; top: 2px; }
.textmate-icon:before { .fi; content: "\2122"; top: 2px; font-size: 16px; }
.tfs-icon:before { .fi; content: "\eae1"; top: 3px; }
.thor-icon:before { .fi; content: "\e9d8"; top: 2px; }
.tilt-icon:before { .fi; content: "\eb8a"; top: 2px; }
.tipe-icon:before { .fi; content: "\eaa9"; top: 3px; font-size: 16px; }
.tla-icon:before { .fi; content: "\eab2"; top: 2px; }
.tmux-icon:before { .fi; content: "\ea8c"; top: 2px; }
.toml-icon:before { .fi; content: "\1f143";top: 2px; }
.tortoise-icon:before { .fi; content: "\ea93"; top: 3px; font-size: 17px; transform: scale(1.15); }
.totvs-icon:before { .fi; content: "\eb34"; top: 2px; }
.truffle-icon:before { .fi; content: "\eb3b"; top: 2px; }
.ts-icon:before { .fi; content: "\2a6"; top: 1px; font-size: 14px; }
.tsx-icon:before { .fi; content: "\e9e7"; top: 1px; font-size: 14px; }
.tt-icon:before { .fi; content: "T"; top: 2px; }
.ttcn3-icon:before { .fi; content: "\2476"; top: 2px; }
.turing-icon:before { .fi; content: "\e9b6"; top: 2px; }
.twine-icon:before { .fi; content: "\ea5d"; top: 2px; }
.twig-icon:before { .fi; content: "\2e19"; top: 2px; font-size: 16px; .sharpen; }
.txl-icon:before { .fi; content: "\e9c1"; top: 2px; }
.typedoc-icon:before { .fi; content: "\e9fe"; top: 2px; }
.typings-icon:before { .fi; content: "\e9df"; top: 2px; }
.ufo-icon:before { .fi; content: "\1f144";top: 2px; font-size: 16px; .sharpen; }
.unibeautify-icon:before { .fi; content: "\eac4"; top: 2px; font-size: 16px; .sharpen; }
.unicode-icon:before { .fi; content: "\eb6e"; top: 2px; }
.uno-icon:before { .fi; content: "\e9b3"; top: 2px; }
.unreal-icon:before { .fi; content: "u"; top: 2px; }
.urweb-icon:before { .fi; content: "\e9ba"; top: 4px; font-size: 18px; left: -1px; .sharpen; }
.v-icon:before { .fi; content: "v"; top: 2px; }
.v8-icon:before { .fi; content: "\ea1f"; top: 3px; font-size: 16px; }
.v8-turbofan-icon:before { .fi; content: "\eaac"; top: 3px; font-size: 17px; }
.vagrant-icon:before { .fi; content: "V"; top: 2px; font-size: 14px; }
.vala-icon:before { .fi; content: "\1d4b1";top: 2px; }
.varnish-icon:before { .fi; content: "\e9b4"; top: 1px; font-size: 14px; }
.velocity-icon:before { .fi; content: "\2b94"; top: 3px; font-size: 17px; transform: scale(1.1); }
.verilog-icon:before { .fi; content: "\e949"; top: 2px; }
.vertex-icon:before { .fi; content: "\ea79"; top: 2px; font-size: 16px; }
.vhdl-icon:before { .fi; content: "\e9aa"; top: 2px; }
.video-icon:before { .fi; content: "\f057"; top: 1px; font-size: 14px; }
.virtualbox-icon:before { .fi; content: "\ea3e"; top: 2px; font-size: 16px; }
.vite-icon:before { .fi; content: "\2607"; top: 2px; font-size: 16px; }
.visio-icon:before { .fi; content: "\ea83"; top: 2px; }
.vmware-icon:before { .fi; content: "\ea49"; top: 3px; font-size: 16px; .sharpen; }
.vray-icon:before { .fi; content: "\24cb"; top: 3px; font-size: 16px; }
.vue-icon:before { .fi; content: "\e906"; top: 3px; }
.vyper-icon:before { .fi; content: "\eb31"; top: 3px; font-size: 16px; }
.vsts-icon:before { .fi; content: "\eac0"; top: 3px; font-size: 16px; left: -1px; }
.w3c-icon:before { .fi; content: "\ebac"; top: 4px; font-size: 18px; }
.wallaby-icon:before { .fi; content: "\231f"; top: 2px; }
.walt-icon:before { .fi; content: "\eaba"; top: 3px; font-size: 16px; }
.warcraft3-icon:before { .fi; content: "\2162"; top: 3px; font-size: 16px; }
.wasm-icon:before { .fi; content: "\ea70"; top: 2px; }
.watchman-icon:before { .fi; content: "\ea4f"; top: 2px; }
.wenyan-icon:before { .fi; content: "\8a00"; top: 3px; font-size: 17px; }
.wdl-icon:before { .fi; content: "\eab1"; top: 2px; }
.webgl-icon:before { .fi; content: "\ea7b"; top: 3px; font-size: 18px; transform: scale(1.1); }
.webhint-icon:before { .fi; content: "\eb35"; top: 2px; font-size: 16px; }
.webpack-icon:before { .fi; content: "\ea61"; top: 3px; font-size: 16px; }
.webvtt-icon:before { .fi; content: "\eb24"; top: 4px; font-size: 16px; transform: scale(1.1); }
.wercker-icon:before { .fi; content: "\ea19"; top: 2px; }
.wget-icon:before { .fi; content: "\eb38"; top: 2px; }
.wine-icon:before { .fi; content: "\1f377";top: 3px; font-size: 16px; transform: scale(1.1); }
.windi-icon:before { .fi; content: "\1f4a8";top: 2px; }
.winui-icon:before { .fi; content: "\ebb7"; top: 2px; font-size: 16px; }
.wix-icon:before { .fi; content: "\eab0"; top: 3px; font-size: 16px; }
.wolfram-icon:before { .fi; content: "\1f43a";top: 3px; font-size: 17px; }
.word-icon:before { .fi; content: "\e9ed"; top: 2px; }
.workbox-icon:before { .fi; content: "\eaa8"; top: 2px; }
.wurst-icon:before { .fi; content: "\1f32d";top: 2px; font-size: 16px; }
.xamarin-icon:before { .fi; content: "\ea77"; top: 2px; }
.x10-icon:before { .fi; content: "\2169"; top: 2px; }
.xmake-icon:before { .fi; content: "\eb94"; top: 3px; }
.xmos-icon:before { .fi; content: "X"; top: 1px; font-size: 14px; }
.xojo-icon:before { .fi; content: "\e9af"; top: 2px; }
.xpages-icon:before { .fi; content: "\e9c5"; top: 2px; }
.xtend-icon:before { .fi; content: "\e9c6"; top: 2px; }
.yaml-icon:before { .fi; content: "y"; top: 2px; }
.yamllint-icon:before { .fi; content: "\eb9d"; top: 3px; font-size: 16px; }