-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.json
8086 lines (8086 loc) · 351 KB
/
theme.json
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
{
"name": "FontAwesome",
"description": "This theme includes icons for each of the FontAwesome Free icons, based upon the FontAwesome Icons Set (https://github.com/FortAwesome/Font-Awesome).",
"elements": [
{
"tag": "FontAwesome - brands-42-group",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/42-group.svg"
},
{
"tag": "FontAwesome - brands-500px",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/500px.svg"
},
{
"tag": "FontAwesome - brands-accessible-icon",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/accessible-icon.svg"
},
{
"tag": "FontAwesome - brands-accusoft",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/accusoft.svg"
},
{
"tag": "FontAwesome - brands-adn",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/adn.svg"
},
{
"tag": "FontAwesome - brands-adversal",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/adversal.svg"
},
{
"tag": "FontAwesome - brands-affiliatetheme",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/affiliatetheme.svg"
},
{
"tag": "FontAwesome - brands-airbnb",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/airbnb.svg"
},
{
"tag": "FontAwesome - brands-algolia",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/algolia.svg"
},
{
"tag": "FontAwesome - brands-alipay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/alipay.svg"
},
{
"tag": "FontAwesome - brands-amazon-pay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/amazon-pay.svg"
},
{
"tag": "FontAwesome - brands-amazon",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/amazon.svg"
},
{
"tag": "FontAwesome - brands-amilia",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/amilia.svg"
},
{
"tag": "FontAwesome - brands-android",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/android.svg"
},
{
"tag": "FontAwesome - brands-angellist",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/angellist.svg"
},
{
"tag": "FontAwesome - brands-angrycreative",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/angrycreative.svg"
},
{
"tag": "FontAwesome - brands-angular",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/angular.svg"
},
{
"tag": "FontAwesome - brands-app-store-ios",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/app-store-ios.svg"
},
{
"tag": "FontAwesome - brands-app-store",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/app-store.svg"
},
{
"tag": "FontAwesome - brands-apper",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/apper.svg"
},
{
"tag": "FontAwesome - brands-apple-pay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/apple-pay.svg"
},
{
"tag": "FontAwesome - brands-apple",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/apple.svg"
},
{
"tag": "FontAwesome - brands-artstation",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/artstation.svg"
},
{
"tag": "FontAwesome - brands-asymmetrik",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/asymmetrik.svg"
},
{
"tag": "FontAwesome - brands-atlassian",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/atlassian.svg"
},
{
"tag": "FontAwesome - brands-audible",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/audible.svg"
},
{
"tag": "FontAwesome - brands-autoprefixer",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/autoprefixer.svg"
},
{
"tag": "FontAwesome - brands-avianex",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/avianex.svg"
},
{
"tag": "FontAwesome - brands-aviato",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/aviato.svg"
},
{
"tag": "FontAwesome - brands-aws",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/aws.svg"
},
{
"tag": "FontAwesome - brands-bandcamp",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bandcamp.svg"
},
{
"tag": "FontAwesome - brands-battle-net",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/battle-net.svg"
},
{
"tag": "FontAwesome - brands-behance",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/behance.svg"
},
{
"tag": "FontAwesome - brands-bilibili",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bilibili.svg"
},
{
"tag": "FontAwesome - brands-bimobject",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bimobject.svg"
},
{
"tag": "FontAwesome - brands-bitbucket",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bitbucket.svg"
},
{
"tag": "FontAwesome - brands-bitcoin",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bitcoin.svg"
},
{
"tag": "FontAwesome - brands-bity",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bity.svg"
},
{
"tag": "FontAwesome - brands-black-tie",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/black-tie.svg"
},
{
"tag": "FontAwesome - brands-blackberry",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/blackberry.svg"
},
{
"tag": "FontAwesome - brands-blogger-b",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/blogger-b.svg"
},
{
"tag": "FontAwesome - brands-blogger",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/blogger.svg"
},
{
"tag": "FontAwesome - brands-bluetooth-b",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bluetooth-b.svg"
},
{
"tag": "FontAwesome - brands-bluetooth",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bluetooth.svg"
},
{
"tag": "FontAwesome - brands-bootstrap",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bootstrap.svg"
},
{
"tag": "FontAwesome - brands-bots",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/bots.svg"
},
{
"tag": "FontAwesome - brands-btc",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/btc.svg"
},
{
"tag": "FontAwesome - brands-buffer",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/buffer.svg"
},
{
"tag": "FontAwesome - brands-buromobelexperte",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/buromobelexperte.svg"
},
{
"tag": "FontAwesome - brands-buy-n-large",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/buy-n-large.svg"
},
{
"tag": "FontAwesome - brands-buysellads",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/buysellads.svg"
},
{
"tag": "FontAwesome - brands-canadian-maple-leaf",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/canadian-maple-leaf.svg"
},
{
"tag": "FontAwesome - brands-cc-amazon-pay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-amazon-pay.svg"
},
{
"tag": "FontAwesome - brands-cc-amex",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-amex.svg"
},
{
"tag": "FontAwesome - brands-cc-apple-pay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-apple-pay.svg"
},
{
"tag": "FontAwesome - brands-cc-diners-club",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-diners-club.svg"
},
{
"tag": "FontAwesome - brands-cc-discover",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-discover.svg"
},
{
"tag": "FontAwesome - brands-cc-jcb",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-jcb.svg"
},
{
"tag": "FontAwesome - brands-cc-mastercard",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-mastercard.svg"
},
{
"tag": "FontAwesome - brands-cc-paypal",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-paypal.svg"
},
{
"tag": "FontAwesome - brands-cc-stripe",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-stripe.svg"
},
{
"tag": "FontAwesome - brands-cc-visa",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cc-visa.svg"
},
{
"tag": "FontAwesome - brands-centercode",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/centercode.svg"
},
{
"tag": "FontAwesome - brands-centos",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/centos.svg"
},
{
"tag": "FontAwesome - brands-chrome",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/chrome.svg"
},
{
"tag": "FontAwesome - brands-chromecast",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/chromecast.svg"
},
{
"tag": "FontAwesome - brands-cloudflare",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cloudflare.svg"
},
{
"tag": "FontAwesome - brands-cloudscale",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cloudscale.svg"
},
{
"tag": "FontAwesome - brands-cloudsmith",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cloudsmith.svg"
},
{
"tag": "FontAwesome - brands-cloudversify",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cloudversify.svg"
},
{
"tag": "FontAwesome - brands-cmplid",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cmplid.svg"
},
{
"tag": "FontAwesome - brands-codepen",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/codepen.svg"
},
{
"tag": "FontAwesome - brands-codiepie",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/codiepie.svg"
},
{
"tag": "FontAwesome - brands-confluence",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/confluence.svg"
},
{
"tag": "FontAwesome - brands-connectdevelop",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/connectdevelop.svg"
},
{
"tag": "FontAwesome - brands-contao",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/contao.svg"
},
{
"tag": "FontAwesome - brands-cotton-bureau",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cotton-bureau.svg"
},
{
"tag": "FontAwesome - brands-cpanel",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cpanel.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-by",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-by.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-nc-eu",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-nc-eu.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-nc-jp",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-nc-jp.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-nc",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-nc.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-nd",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-nd.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-pd-alt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-pd-alt.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-pd",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-pd.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-remix",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-remix.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-sa",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-sa.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-sampling-plus",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-sampling-plus.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-sampling",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-sampling.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-share",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-share.svg"
},
{
"tag": "FontAwesome - brands-creative-commons-zero",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons-zero.svg"
},
{
"tag": "FontAwesome - brands-creative-commons",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/creative-commons.svg"
},
{
"tag": "FontAwesome - brands-critical-role",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/critical-role.svg"
},
{
"tag": "FontAwesome - brands-css3-alt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/css3-alt.svg"
},
{
"tag": "FontAwesome - brands-css3",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/css3.svg"
},
{
"tag": "FontAwesome - brands-cuttlefish",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/cuttlefish.svg"
},
{
"tag": "FontAwesome - brands-d-and-d-beyond",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/d-and-d-beyond.svg"
},
{
"tag": "FontAwesome - brands-d-and-d",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/d-and-d.svg"
},
{
"tag": "FontAwesome - brands-dailymotion",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dailymotion.svg"
},
{
"tag": "FontAwesome - brands-dashcube",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dashcube.svg"
},
{
"tag": "FontAwesome - brands-deezer",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/deezer.svg"
},
{
"tag": "FontAwesome - brands-delicious",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/delicious.svg"
},
{
"tag": "FontAwesome - brands-deploydog",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/deploydog.svg"
},
{
"tag": "FontAwesome - brands-deskpro",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/deskpro.svg"
},
{
"tag": "FontAwesome - brands-dev",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dev.svg"
},
{
"tag": "FontAwesome - brands-deviantart",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/deviantart.svg"
},
{
"tag": "FontAwesome - brands-dhl",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dhl.svg"
},
{
"tag": "FontAwesome - brands-diaspora",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/diaspora.svg"
},
{
"tag": "FontAwesome - brands-digg",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/digg.svg"
},
{
"tag": "FontAwesome - brands-digital-ocean",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/digital-ocean.svg"
},
{
"tag": "FontAwesome - brands-discord",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/discord.svg"
},
{
"tag": "FontAwesome - brands-discourse",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/discourse.svg"
},
{
"tag": "FontAwesome - brands-dochub",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dochub.svg"
},
{
"tag": "FontAwesome - brands-docker",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/docker.svg"
},
{
"tag": "FontAwesome - brands-draft2digital",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/draft2digital.svg"
},
{
"tag": "FontAwesome - brands-dribbble",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dribbble.svg"
},
{
"tag": "FontAwesome - brands-dropbox",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dropbox.svg"
},
{
"tag": "FontAwesome - brands-drupal",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/drupal.svg"
},
{
"tag": "FontAwesome - brands-dyalog",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/dyalog.svg"
},
{
"tag": "FontAwesome - brands-earlybirds",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/earlybirds.svg"
},
{
"tag": "FontAwesome - brands-ebay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/ebay.svg"
},
{
"tag": "FontAwesome - brands-edge-legacy",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/edge-legacy.svg"
},
{
"tag": "FontAwesome - brands-edge",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/edge.svg"
},
{
"tag": "FontAwesome - brands-elementor",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/elementor.svg"
},
{
"tag": "FontAwesome - brands-ello",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/ello.svg"
},
{
"tag": "FontAwesome - brands-ember",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/ember.svg"
},
{
"tag": "FontAwesome - brands-empire",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/empire.svg"
},
{
"tag": "FontAwesome - brands-envira",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/envira.svg"
},
{
"tag": "FontAwesome - brands-erlang",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/erlang.svg"
},
{
"tag": "FontAwesome - brands-ethereum",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/ethereum.svg"
},
{
"tag": "FontAwesome - brands-etsy",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/etsy.svg"
},
{
"tag": "FontAwesome - brands-evernote",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/evernote.svg"
},
{
"tag": "FontAwesome - brands-expeditedssl",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/expeditedssl.svg"
},
{
"tag": "FontAwesome - brands-facebook-f",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/facebook-f.svg"
},
{
"tag": "FontAwesome - brands-facebook-messenger",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/facebook-messenger.svg"
},
{
"tag": "FontAwesome - brands-facebook",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/facebook.svg"
},
{
"tag": "FontAwesome - brands-fantasy-flight-games",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fantasy-flight-games.svg"
},
{
"tag": "FontAwesome - brands-fedex",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fedex.svg"
},
{
"tag": "FontAwesome - brands-fedora",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fedora.svg"
},
{
"tag": "FontAwesome - brands-figma",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/figma.svg"
},
{
"tag": "FontAwesome - brands-firefox-browser",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/firefox-browser.svg"
},
{
"tag": "FontAwesome - brands-firefox",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/firefox.svg"
},
{
"tag": "FontAwesome - brands-first-order-alt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/first-order-alt.svg"
},
{
"tag": "FontAwesome - brands-first-order",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/first-order.svg"
},
{
"tag": "FontAwesome - brands-firstdraft",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/firstdraft.svg"
},
{
"tag": "FontAwesome - brands-flickr",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/flickr.svg"
},
{
"tag": "FontAwesome - brands-flipboard",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/flipboard.svg"
},
{
"tag": "FontAwesome - brands-fly",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fly.svg"
},
{
"tag": "FontAwesome - brands-font-awesome",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/font-awesome.svg"
},
{
"tag": "FontAwesome - brands-fonticons-fi",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fonticons-fi.svg"
},
{
"tag": "FontAwesome - brands-fonticons",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fonticons.svg"
},
{
"tag": "FontAwesome - brands-fort-awesome-alt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fort-awesome-alt.svg"
},
{
"tag": "FontAwesome - brands-fort-awesome",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fort-awesome.svg"
},
{
"tag": "FontAwesome - brands-forumbee",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/forumbee.svg"
},
{
"tag": "FontAwesome - brands-foursquare",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/foursquare.svg"
},
{
"tag": "FontAwesome - brands-free-code-camp",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/free-code-camp.svg"
},
{
"tag": "FontAwesome - brands-freebsd",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/freebsd.svg"
},
{
"tag": "FontAwesome - brands-fulcrum",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/fulcrum.svg"
},
{
"tag": "FontAwesome - brands-galactic-republic",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/galactic-republic.svg"
},
{
"tag": "FontAwesome - brands-galactic-senate",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/galactic-senate.svg"
},
{
"tag": "FontAwesome - brands-get-pocket",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/get-pocket.svg"
},
{
"tag": "FontAwesome - brands-gg-circle",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gg-circle.svg"
},
{
"tag": "FontAwesome - brands-gg",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gg.svg"
},
{
"tag": "FontAwesome - brands-git-alt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/git-alt.svg"
},
{
"tag": "FontAwesome - brands-git",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/git.svg"
},
{
"tag": "FontAwesome - brands-github-alt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/github-alt.svg"
},
{
"tag": "FontAwesome - brands-github",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/github.svg"
},
{
"tag": "FontAwesome - brands-gitkraken",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gitkraken.svg"
},
{
"tag": "FontAwesome - brands-gitlab",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gitlab.svg"
},
{
"tag": "FontAwesome - brands-gitter",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gitter.svg"
},
{
"tag": "FontAwesome - brands-glide-g",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/glide-g.svg"
},
{
"tag": "FontAwesome - brands-glide",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/glide.svg"
},
{
"tag": "FontAwesome - brands-gofore",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gofore.svg"
},
{
"tag": "FontAwesome - brands-golang",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/golang.svg"
},
{
"tag": "FontAwesome - brands-goodreads-g",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/goodreads-g.svg"
},
{
"tag": "FontAwesome - brands-goodreads",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/goodreads.svg"
},
{
"tag": "FontAwesome - brands-google-drive",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google-drive.svg"
},
{
"tag": "FontAwesome - brands-google-pay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google-pay.svg"
},
{
"tag": "FontAwesome - brands-google-play",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google-play.svg"
},
{
"tag": "FontAwesome - brands-google-plus-g",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google-plus-g.svg"
},
{
"tag": "FontAwesome - brands-google-plus",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google-plus.svg"
},
{
"tag": "FontAwesome - brands-google-wallet",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google-wallet.svg"
},
{
"tag": "FontAwesome - brands-google",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/google.svg"
},
{
"tag": "FontAwesome - brands-gratipay",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gratipay.svg"
},
{
"tag": "FontAwesome - brands-grav",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/grav.svg"
},
{
"tag": "FontAwesome - brands-gripfire",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gripfire.svg"
},
{
"tag": "FontAwesome - brands-grunt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/grunt.svg"
},
{
"tag": "FontAwesome - brands-guilded",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/guilded.svg"
},
{
"tag": "FontAwesome - brands-gulp",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/gulp.svg"
},
{
"tag": "FontAwesome - brands-hacker-news",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hacker-news.svg"
},
{
"tag": "FontAwesome - brands-hackerrank",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hackerrank.svg"
},
{
"tag": "FontAwesome - brands-hashnode",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hashnode.svg"
},
{
"tag": "FontAwesome - brands-hips",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hips.svg"
},
{
"tag": "FontAwesome - brands-hire-a-helper",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hire-a-helper.svg"
},
{
"tag": "FontAwesome - brands-hive",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hive.svg"
},
{
"tag": "FontAwesome - brands-hooli",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hooli.svg"
},
{
"tag": "FontAwesome - brands-hornbill",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hornbill.svg"
},
{
"tag": "FontAwesome - brands-hotjar",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hotjar.svg"
},
{
"tag": "FontAwesome - brands-houzz",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/houzz.svg"
},
{
"tag": "FontAwesome - brands-html5",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/html5.svg"
},
{
"tag": "FontAwesome - brands-hubspot",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/hubspot.svg"
},
{
"tag": "FontAwesome - brands-ideal",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/ideal.svg"
},
{
"tag": "FontAwesome - brands-imdb",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/imdb.svg"
},
{
"tag": "FontAwesome - brands-instagram",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/instagram.svg"
},
{
"tag": "FontAwesome - brands-instalod",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/instalod.svg"
},
{
"tag": "FontAwesome - brands-intercom",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/intercom.svg"
},
{
"tag": "FontAwesome - brands-internet-explorer",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/internet-explorer.svg"
},
{
"tag": "FontAwesome - brands-invision",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/invision.svg"
},
{
"tag": "FontAwesome - brands-ioxhost",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/ioxhost.svg"
},
{
"tag": "FontAwesome - brands-itch-io",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/itch-io.svg"
},
{
"tag": "FontAwesome - brands-itunes-note",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/itunes-note.svg"
},
{
"tag": "FontAwesome - brands-itunes",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/itunes.svg"
},
{
"tag": "FontAwesome - brands-java",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/java.svg"
},
{
"tag": "FontAwesome - brands-jedi-order",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/jedi-order.svg"
},
{
"tag": "FontAwesome - brands-jenkins",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/jenkins.svg"
},
{
"tag": "FontAwesome - brands-jira",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/jira.svg"
},
{
"tag": "FontAwesome - brands-joget",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/joget.svg"
},
{
"tag": "FontAwesome - brands-joomla",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/joomla.svg"
},
{
"tag": "FontAwesome - brands-js",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/js.svg"
},
{
"tag": "FontAwesome - brands-jsfiddle",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/jsfiddle.svg"
},
{
"tag": "FontAwesome - brands-kaggle",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/kaggle.svg"
},
{
"tag": "FontAwesome - brands-keybase",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/keybase.svg"
},
{
"tag": "FontAwesome - brands-keycdn",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/keycdn.svg"
},
{
"tag": "FontAwesome - brands-kickstarter-k",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/kickstarter-k.svg"
},
{
"tag": "FontAwesome - brands-kickstarter",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/kickstarter.svg"
},
{
"tag": "FontAwesome - brands-korvue",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/korvue.svg"
},
{
"tag": "FontAwesome - brands-laravel",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/laravel.svg"
},
{
"tag": "FontAwesome - brands-lastfm",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/lastfm.svg"
},
{
"tag": "FontAwesome - brands-leanpub",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/leanpub.svg"
},
{
"tag": "FontAwesome - brands-less",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/less.svg"
},
{
"tag": "FontAwesome - brands-line",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/line.svg"
},
{
"tag": "FontAwesome - brands-linkedin-in",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/linkedin-in.svg"
},
{
"tag": "FontAwesome - brands-linkedin",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/linkedin.svg"
},
{
"tag": "FontAwesome - brands-linode",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/linode.svg"
},
{
"tag": "FontAwesome - brands-linux",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/linux.svg"
},
{
"tag": "FontAwesome - brands-lyft",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/lyft.svg"
},
{
"tag": "FontAwesome - brands-magento",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/magento.svg"
},
{
"tag": "FontAwesome - brands-mailchimp",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/mailchimp.svg"
},
{
"tag": "FontAwesome - brands-mandalorian",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/mandalorian.svg"
},
{
"tag": "FontAwesome - brands-markdown",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/markdown.svg"
},
{
"tag": "FontAwesome - brands-mastodon",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/mastodon.svg"
},
{
"tag": "FontAwesome - brands-maxcdn",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/maxcdn.svg"
},
{
"tag": "FontAwesome - brands-mdb",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/mdb.svg"
},
{
"tag": "FontAwesome - brands-medapps",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/medapps.svg"
},
{
"tag": "FontAwesome - brands-medium",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/medium.svg"
},
{
"tag": "FontAwesome - brands-medrt",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/medrt.svg"
},
{
"tag": "FontAwesome - brands-meetup",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/meetup.svg"
},
{
"tag": "FontAwesome - brands-megaport",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/megaport.svg"
},
{
"tag": "FontAwesome - brands-mendeley",
"icon": "https://raw.githubusercontent.com/J-Cat/structurizr-fontawesome-theme/master/fontawesome/brands/mendeley.svg"
},