forked from StylishThemes/GitHub-Dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-dark.user.css
3972 lines (3971 loc) · 310 KB
/
github-dark.user.css
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
/* ==UserStyle==
@name GitHub Dark
@namespace StylishThemes
@version 1.19.17
@homepageURL https://github.com/StylishThemes/GitHub-Dark
@updateURL https://raw.githubusercontent.com/StylishThemes/GitHub-Dark/master/github-dark.user.css
@license CC-BY-SA-4.0
@author StylishThemes
@advanced color base-color "Base color scheme" #4183C4
@advanced dropdown syntax-theme "Github syntax theme" {
Ambiance "Ambiance" <<<EOT
/*! GitHub: Ambiance *\/.CodeMirror,.highlight{background-color:#202020!important;color:#e6e1dc!important}.blob-code,.blob-code-inner{color:#e6e1dc!important}.pl-c,.pl-c span{color:#555!important;font-style:italic!important}.pl-c1{color:#cf7ea9!important}.pl-e{color:#aac6e3!important}.pl-en{color:#fa8d6a!important}.pl-ent{color:#aac6e3!important}.pl-k{color:#fa8d6a!important}.pl-mb{color:#cf7ea9!important;font-weight:700!important}.pl-mdh{color:#cda869!important}.pl-mdr{color:#cda869!important}.pl-mh{color:#9b859d!important}.pl-mh .pl-en{color:#9b859d!important;font-weight:700!important}.pl-mi{color:#cda869!important;font-style:italic!important}.pl-ml{color:#cda869!important}.pl-mm{color:#cda869!important}.pl-mo{color:#cda869!important}.pl-mp{color:#cda869!important}.pl-mq{color:#555!important}.pl-mr{color:#cda869!important}.pl-ms{color:#cda869!important}.pl-pds{color:#8f9d6a!important}.pl-s{color:#aac6e3!important}.pl-s1{color:#8f9d6a!important}.pl-s1 .pl-pse .pl-s2{color:#8f9d6a!important}.pl-s1 .pl-s2{color:#99c!important}.pl-s1 .pl-v{color:#cda869!important}.pl-s3{color:#cda869!important}.pl-sc{color:#9b859d!important}.pl-smi{color:#99c!important}.pl-smp{color:#99c!important}.pl-sr{color:#dad085!important}.pl-sr .pl-cce{color:#9b859d!important}.pl-sr .pl-sra{color:#dad085!important}.pl-sr .pl-sre{color:#dad085!important}.pl-src{color:#dad085!important}.pl-st{color:#aac6e3!important}.pl-stj{color:#99c!important}.pl-sv{color:#cf7ea9!important}.pl-v{color:#aac6e3!important}.pl-vo{color:#99c!important}.pl-vpf{color:#99c!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-mdhf{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-id{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-ii{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important} EOT;
Chaos "Chaos" <<<EOT
/*! GitHub: Chaos *\/.CodeMirror,.highlight{background-color:#161616!important;color:#e6e1dc!important}.blob-code,.blob-code-inner{color:#e6e1dc!important}.pl-c,.pl-c span{color:#555!important;font-style:italic!important}.pl-c1{color:#fdc251!important}.pl-e{color:#974!important}.pl-en{color:#974!important}.pl-ent{color:#974!important}.pl-k{color:#00698f!important}.pl-mb{color:#1edafb!important;font-weight:700!important}.pl-mdh{color:#00698f!important}.pl-mdr{color:#00698f!important}.pl-mh{color:#fdc251!important}.pl-mh .pl-en{color:#fdc251!important;font-weight:700!important}.pl-mi{color:#00698f!important;font-style:italic!important}.pl-ml{color:#00698f!important}.pl-mm{color:#00698f!important}.pl-mo{color:#00698f!important}.pl-mp{color:#00698f!important}.pl-mq{color:#555!important}.pl-mr{color:#00698f!important}.pl-ms{color:#00698f!important}.pl-pds{color:#58c554!important}.pl-s{color:#974!important}.pl-s1{color:#58c554!important}.pl-s1 .pl-pse .pl-s2{color:#58c554!important}.pl-s1 .pl-s2{color:#1edafb!important}.pl-s1 .pl-v{color:#00698f!important}.pl-s3{color:#00698f!important}.pl-sc{color:#999!important}.pl-smi{color:#be53e6!important}.pl-smp{color:#be53e6!important}.pl-sr{color:#ff308f!important}.pl-sr .pl-cce{color:#fdc251!important}.pl-sr .pl-sra{color:#ff308f!important}.pl-sr .pl-sre{color:#ff308f!important}.pl-src{color:#ff308f!important}.pl-st{color:#e6e1dc!important}.pl-stj{color:#be53e6!important}.pl-sv{color:#1edafb!important}.pl-v{color:#974!important}.pl-vo{color:#be53e6!important}.pl-vpf{color:#974!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:#900!important}.pl-mdhf{color:#fff!important;background:#900!important}.pl-id{color:#fff!important;background:#900!important}.pl-ii{color:#fff!important;background:#900!important} EOT;
Clouds_Midnight "Clouds_Midnight" <<<EOT
/*! GitHub: Clouds_Midnight *\/.CodeMirror,.highlight{background-color:#191919!important;color:#929292!important}.blob-code,.blob-code-inner{color:#929292!important}.pl-c,.pl-c span{color:#3c403b!important;font-style:italic!important}.pl-c1{color:#39946a!important}.pl-e{color:#929292!important}.pl-en{color:#929292!important}.pl-ent{color:#929292!important}.pl-k{color:#927c5d!important}.pl-mb{color:#39946a!important;font-weight:700!important}.pl-mdh{color:#927c5d!important}.pl-mdr{color:#927c5d!important}.pl-mh{color:#366f1a!important}.pl-mh .pl-en{color:#366f1a!important;font-weight:700!important}.pl-mi{color:#927c5d!important;font-style:italic!important}.pl-ml{color:#927c5d!important}.pl-mm{color:#927c5d!important}.pl-mo{color:#927c5d!important}.pl-mp{color:#927c5d!important}.pl-mq{color:#3c403b!important}.pl-mr{color:#927c5d!important}.pl-ms{color:#927c5d!important}.pl-pds{color:#5d90cd!important}.pl-s{color:#e92e2e!important}.pl-s1{color:#5d90cd!important}.pl-s1 .pl-pse .pl-s2{color:#5d90cd!important}.pl-s1 .pl-s2{color:#606060!important}.pl-s1 .pl-v{color:#927c5d!important}.pl-s3{color:#927c5d!important}.pl-sc{color:#366f1a!important}.pl-smi{color:#606060!important}.pl-smp{color:#606060!important}.pl-sr{color:#e92e2e!important}.pl-sr .pl-cce{color:#366f1a!important}.pl-sr .pl-sra{color:#e92e2e!important}.pl-sr .pl-sre{color:#e92e2e!important}.pl-src{color:#e92e2e!important}.pl-st{color:#e92e2e!important}.pl-stj{color:#606060!important}.pl-sv{color:#39946a!important}.pl-v{color:#5d90cd!important}.pl-vo{color:#606060!important}.pl-vpf{color:#606060!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:#e92e2e!important}.pl-mdhf{color:#fff!important;background:#e92e2e!important}.pl-id{color:#fff!important;background:#e92e2e!important}.pl-ii{color:#fff!important;background:#e92e2e!important} EOT;
Cobalt "Cobalt" <<<EOT
/*! GitHub: Cobalt *\/.CodeMirror,.highlight{background-color:#002240!important;color:#fff!important}.blob-code,.blob-code-inner{color:#fff!important}.pl-c,.pl-c span{color:#08f!important;font-style:italic!important}.pl-c1{color:#ff628c!important}.pl-e{color:#ff9d00!important}.pl-en{color:#fff!important}.pl-ent{color:#fd0!important}.pl-k{color:#ff9d00!important}.pl-mb{color:#ff628c!important;font-weight:700!important}.pl-mdh{color:#ff9d00!important}.pl-mdr{color:#ff9d00!important}.pl-mh{color:#eb939a!important}.pl-mh .pl-en{color:#eb939a!important;font-weight:700!important}.pl-mi{color:#ff9d00!important;font-style:italic!important}.pl-ml{color:#ff9d00!important}.pl-mm{color:#ff9d00!important}.pl-mo{color:#ff9d00!important}.pl-mp{color:#ff9d00!important}.pl-mq{color:#08f!important}.pl-mr{color:#ff9d00!important}.pl-ms{color:#ff9d00!important}.pl-pds{color:#3ad900!important}.pl-s{color:#3ad900!important}.pl-s1{color:#3ad900!important}.pl-s1 .pl-pse .pl-s2{color:#3ad900!important}.pl-s1 .pl-s2{color:#ccc!important}.pl-s1 .pl-v{color:#3ad900!important}.pl-s3{color:#ffb054!important}.pl-sc{color:#ffb054!important}.pl-smi{color:#ccc!important}.pl-smp{color:#ccc!important}.pl-sr{color:#80ffc2!important}.pl-sr .pl-cce{color:#eb939a!important}.pl-sr .pl-sra{color:#80ffc2!important}.pl-sr .pl-sre{color:#80ffc2!important}.pl-src{color:#80ffc2!important}.pl-st{color:#ff9d00!important}.pl-stj{color:#ccc!important}.pl-sv{color:#ff628c!important}.pl-v{color:#fd0!important}.pl-vo{color:#ccc!important}.pl-vpf{color:#ccc!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:#800f00!important}.pl-mdhf{color:#f8f8f8!important;background:#800f00!important}.pl-id{color:#f8f8f8!important;background:#800f00!important}.pl-ii{color:#f8f8f8!important;background:#800f00!important}.highlight-source-js .pl-st{color:#ffee80!important}.highlight-source-css .pl-s3{color:#80ffbb!important}.highlight-text-html-basic .pl-ent{color:#9effff!important} EOT;
GitHub Dark "GitHub Dark" <<<EOT
/*! GitHub: GitHub Dark *\/.CodeMirror,.highlight{background:#141414!important;color:#ccc!important}.blob-code,.blob-code-inner{color:#ccc!important}.pl-c{color:#969896}.pl-c1,.pl-s .pl-v{color:#0099cd}.pl-e,.pl-en{color:#9774cb}.pl-s .pl-s1,.pl-smi{color:#ddd}.pl-ent{color:#7bcc72}.pl-k{color:#cc2372}.pl-pds,.pl-s,.pl-s .pl-pse .pl-s1,.pl-sr,.pl-sr .pl-cce,.pl-sr .pl-sra,.pl-sr .pl-sre{color:#3c66e2}.pl-smw,.pl-v{color:#fb8764}.pl-bu{color:#e63525}.pl-ii{color:#f8f8f8;background-color:#e63525}.pl-sr .pl-cce{font-weight:700;color:#7bcc72}.pl-ml{color:#c26b2b}.pl-mh,.pl-mh .pl-en,.pl-ms{font-weight:700;color:#4c66e2}.pl-mq{color:#00acac}.pl-mi{font-style:italic;color:#ddd}.pl-mb{font-weight:700;color:#ddd}.pl-md{color:#bd2c00;background-color:#ffecec}.pl-mi1{color:#55a532;background-color:#eaffea}.pl-mc{color:#ef9700;background-color:#ffe3b4}.pl-mi2{color:#d8d8d8;background-color:grey}.pl-mdr{font-weight:700;color:#9774cb}.pl-mo{color:#264ec5}.pl-ba{color:#e1e1e1}.pl-sg{color:#6e7880}.pl-corl{text-decoration:underline;color:#3c66e2} EOT;
Idle Fingers "Idle Fingers" <<<EOT
/*! GitHub: Idle Fingers *\/.CodeMirror,.highlight{background-color:#323232!important;color:#fff!important}.blob-code,.blob-code-inner{color:#fff!important}.pl-c,.pl-c span{color:#bc9458!important;font-style:italic!important}.pl-c1{color:#6c99bb!important}.pl-cce{color:#cc7833!important}.pl-cn{color:#cc7833!important}.pl-coc{color:#cc7833!important}.pl-cos{color:#a5c261!important}.pl-e{color:#ffc66d!important}.pl-ef{color:#b83426!important}.pl-en{color:#ffc66d!important}.pl-enc{color:#cc7833!important}.pl-enf{color:#b83426!important}.pl-enm{color:#b83426!important}.pl-ens{color:#cc7833!important}.pl-ent{color:#ffe5bb!important}.pl-entc{color:#b83426!important}.pl-enti{color:#b83426!important;font-weight:700!important}.pl-entm{color:#b83426!important}.pl-eoa{color:#ffe5bb!important}.pl-eoac{color:#b83426!important}.pl-eoac .pl-pde{color:#b83426!important}.pl-eoai{color:#ffe5bb!important}.pl-eoai .pl-pde{color:#ffe5bb!important}.pl-eoi{color:#b83426!important}.pl-k{color:#cc7833!important}.pl-ko{color:#ffe5bb!important}.pl-kolp{color:#ffe5bb!important}.pl-kos{color:#cc7833!important}.pl-kou{color:#cc7833!important}.pl-mai .pl-sf{color:#b83426!important}.pl-mb{color:#a5c261!important;font-weight:700!important}.pl-mc{color:#ffe5bb!important}.pl-mh .pl-pdh{color:#cc7833!important}.pl-mi{color:#ffe5bb!important;font-style:italic!important}.pl-ml{color:#a5c261!important}.pl-mm{color:#b83426!important}.pl-mp{color:#cc7833!important}.pl-mp1 .pl-sf{color:#cc7833!important}.pl-mq{color:#cc7833!important}.pl-mr{color:#ffe5bb!important}.pl-ms{color:#ffe5bb!important}.pl-pdb{color:#a5c261!important;font-weight:700!important}.pl-pdc{color:#bc9458!important;font-style:italic!important}.pl-pdc1{color:#6c99bb!important}.pl-pde{color:#cc7833!important}.pl-pdi{color:#ffe5bb!important;font-style:italic!important}.pl-pds{color:#a5c261!important}.pl-pdv{color:#b83426!important}.pl-pse{color:#cc7833!important}.pl-pse .pl-s2{color:#cc7833!important}.pl-s{color:#cc7833!important}.pl-s1{color:#a5c261!important}.pl-s2{color:#fff!important}.pl-mp .pl-s3{color:#cc7833!important}.pl-s3{color:#ffe5bb!important}.pl-sc{color:#ffc66d!important}.pl-scp{color:#6c99bb!important}.pl-sf{color:#ffc66d!important}.pl-smc{color:#b83426!important}.pl-smi{color:#ffc66d!important}.pl-smp{color:#ffc66d!important}.pl-sok{color:#ffe5bb!important}.pl-sol{color:#a5c261!important}.pl-som{color:#b83426!important}.pl-sr{color:#b83426!important}.pl-sra{color:#cc3!important}.pl-src{color:#cc3!important}.pl-sre{color:#cc3!important}.pl-st{color:#cc7833!important}.pl-stj{color:#fff!important}.pl-stp{color:#cc7833!important}.pl-sv{color:#cc7833!important}.pl-v{color:#cc7833!important}.pl-vi{color:#cc7833!important}.pl-vo{color:#fff!important}.pl-vpf{color:#cc7833!important}.pl-mi1{color:#a5c261!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a5c261!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#b83426!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#b83426!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#cc7833!important;font-weight:400!important}.pl-mdh{color:#ffc66d!important;font-weight:400!important}.pl-mdi{color:#ffc66d!important;font-weight:400!important}.pl-ib{background-color:#b83426!important}.pl-id{background-color:#b83426!important;color:#fff!important}.pl-ii{background-color:#b83426!important;color:#fff!important}.pl-iu{background-color:#b83426!important}.pl-mo{color:#ffc66d!important}.pl-mri{color:#cc7833!important}.pl-ms1{background-color:#ffc66d!important}.pl-va{color:#cc7833!important}.pl-vpu{color:#cc7833!important}.pl-entl{color:#ffc66d!important}.highlight-text-html-basic .pl-ent{color:#cc7833!important} EOT;
KR theme "KR theme" <<<EOT
/*! GitHub: KR theme *\/.CodeMirror,.highlight{background-color:#0b0a09!important;color:#fcffe0!important}.blob-code,.blob-code-inner{color:#fcffe0!important}.pl-c,.pl-c span{color:#706d5b!important;font-style:italic!important}.pl-c1{color:rgba(210,117,24,.76)!important}.pl-e{color:#fcffe0!important}.pl-en{color:#fcffe0!important}.pl-ent{color:#babd9c!important}.pl-k{color:#949c8b!important}.pl-mb{color:rgba(210,117,24,.76)!important;font-weight:700!important}.pl-mdh{color:#949c8b!important}.pl-mdr{color:#949c8b!important}.pl-mh{color:#9fc28a!important}.pl-mh .pl-en{color:#9fc28a!important;font-weight:700!important}.pl-mi{color:#949c8b!important;font-style:italic!important}.pl-ml{color:#949c8b!important}.pl-mm{color:#949c8b!important}.pl-mo{color:#949c8b!important}.pl-mp{color:#949c8b!important}.pl-mq{color:#706d5b!important}.pl-mr{color:#949c8b!important}.pl-ms{color:#949c8b!important}.pl-pds{color:rgba(164,161,181,.8)!important}.pl-s{color:#949c8b!important}.pl-s1{color:rgba(164,161,181,.8)!important}.pl-s1 .pl-pse .pl-s2{color:rgba(164,161,181,.8)!important}.pl-s1 .pl-s2{color:#babd9c!important}.pl-s1 .pl-v{color:#949c8b!important}.pl-s3{color:#85873a!important}.pl-sc{color:#fcffe0!important}.pl-smi{color:#babd9c!important}.pl-smp{color:#babd9c!important}.pl-sr{color:rgba(125,255,192,.65)!important}.pl-sr .pl-cce{color:#9fc28a!important}.pl-sr .pl-sra{color:rgba(125,255,192,.65)!important}.pl-sr .pl-sre{color:rgba(125,255,192,.65)!important}.pl-src{color:rgba(125,255,192,.65)!important}.pl-st{color:#949c8b!important}.pl-stj{color:#babd9c!important}.pl-sv{color:rgba(210,117,24,.76)!important}.pl-v{color:#fcffe0!important}.pl-vo{color:#d1a796!important}.pl-vpf{color:#d1a796!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:#a41300!important}.pl-mdhf{color:#f8f8f8!important;background:#a41300!important}.pl-id{color:#f8f8f8!important;background:#a41300!important}.pl-ii{color:#f8f8f8!important;background:#a41300!important}.highlight-source-js .pl-s3{color:#ff80e1!important}.highlight-source-js .pl-v{color:#ff80e1!important}.highlight-source-js .pl-st{color:#ffee80!important} EOT;
Merbivore Soft "Merbivore Soft" <<<EOT
/*! GitHub: Merbivore Soft *\/.CodeMirror,.highlight{background-color:#1c1c1c!important;color:#e6e1dc!important}.blob-code,.blob-code-inner{color:#e6e1dc!important}.pl-c,.pl-c span{color:#ad2ea4!important;font-style:italic!important}.pl-c1{color:#b3e5b4!important}.pl-e{color:#e1c582!important}.pl-en{color:#fc6f09!important}.pl-ent{color:#fc6f09!important;font-style:italic!important}.pl-k{color:#fc6f09!important}.pl-mb{color:#8ec65f!important;font-weight:700!important}.pl-mdh{color:#fc6f09!important}.pl-mdr{color:#fc6f09!important}.pl-mh{color:#8ec65f!important}.pl-mh .pl-en{color:#8ec65f!important;font-weight:700!important}.pl-mi{color:#fc6f09!important;font-style:italic!important}.pl-ml{color:#fc6f09!important}.pl-mm{color:#fc6f09!important}.pl-mo{color:#fc6f09!important}.pl-mp{color:#fc6f09!important}.pl-mq{color:#ad2ea4!important}.pl-mr{color:#fc6f09!important}.pl-ms{color:#fc6f09!important}.pl-pds{color:#8ec65f!important}.pl-s{color:#fc6f09!important}.pl-s1{color:#8ec65f!important}.pl-s1 .pl-pse .pl-s2{color:#8ec65f!important}.pl-s1 .pl-s2{color:#fc6f09!important}.pl-s1 .pl-v{color:#fc6f09!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#68c1d8!important}.pl-smi{color:#fc6f09!important}.pl-smp{color:#fc6f09!important}.pl-sr{color:#fc6f09!important}.pl-sr .pl-cce{color:#b3e5b4!important}.pl-sr .pl-sra{color:#e1c582!important}.pl-sr .pl-sre{color:#e1c582!important}.pl-src{color:#e1c582!important}.pl-st{color:#fc6f09!important}.pl-stj{color:#fc6f09!important}.pl-sv{color:#8ec65f!important}.pl-v{color:#fc6f09!important}.pl-vo{color:#e6e1dc!important}.pl-vpf{color:#e6e1dc!important}.pl-mi1{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e6e1dc!important;background:#fe3838!important}.pl-mdhf{color:#e6e1dc!important;background:#fe3838!important}.pl-id{color:#e6e1dc!important;background:#fe3838!important}.pl-ii{color:#e6e1dc!important;background:#fe3838!important}.highlight-source-css .pl-e{color:#e6e1dc!important}.highlight-source-js .pl-c1{color:#e1c582!important}.highlight-source-js .pl-sc{color:#e6e1dc!important}.highlight-text-html-php .pl-s3{color:#fc6f09!important}.highlight-source-css .pl-s3{color:#68c1d8!important}.highlight-source-python .pl-c1{color:#e1c582!important} EOT;
Merbivore "Merbivore" <<<EOT
/*! GitHub: Merbivore *\/.CodeMirror,.highlight{background-color:#161616!important;color:#e6e1dc!important}.blob-code,.blob-code-inner{color:#e6e1dc!important}.pl-c,.pl-c span{color:#ad2ea4!important;font-style:italic!important}.pl-c1{color:#519f50!important}.pl-e{color:#fdc251!important}.pl-en{color:#fc6f09!important}.pl-ent{color:#fc6f09!important}.pl-k{color:#fc6f09!important}.pl-mb{color:#8dff0a!important;font-weight:700!important}.pl-mdh{color:#fc6f09!important}.pl-mdr{color:#fc6f09!important}.pl-mh{color:#8dff0a!important}.pl-mh .pl-en{color:#8dff0a!important;font-weight:700!important}.pl-mi{color:#fc6f09!important;font-style:italic!important}.pl-ml{color:#fc6f09!important}.pl-mm{color:#fc6f09!important}.pl-mo{color:#fc6f09!important}.pl-mp{color:#fc6f09!important}.pl-mq{color:#ad2ea4!important}.pl-mr{color:#fc6f09!important}.pl-ms{color:#fc6f09!important}.pl-pds{color:#8dff0a!important}.pl-s{color:#fc6f09!important}.pl-s1{color:#8dff0a!important}.pl-s1 .pl-pse .pl-s2{color:#8dff0a!important}.pl-s1 .pl-s2{color:#fc6f09!important}.pl-s1 .pl-v{color:#fc6f09!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#1edafb!important}.pl-smi{color:#fc6f09!important}.pl-smp{color:#fc6f09!important}.pl-sr{color:#fc6f09!important}.pl-sr .pl-cce{color:#519f50!important}.pl-sr .pl-sra{color:#fdc251!important}.pl-sr .pl-sre{color:#fdc251!important}.pl-src{color:#fdc251!important}.pl-st{color:#fc6f09!important}.pl-stj{color:#fc6f09!important}.pl-sv{color:#8dff0a!important}.pl-v{color:#fc6f09!important}.pl-vo{color:#e6e1dc!important}.pl-vpf{color:#e6e1dc!important}.pl-mi1{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e6e1dc!important;background:#900!important}.pl-mdhf{color:#e6e1dc!important;background:#900!important}.pl-id{color:#e6e1dc!important;background:#900!important}.pl-ii{color:#e6e1dc!important;background:#900!important}.highlight-source-css .pl-e{color:#e6e1dc!important}.highlight-source-js .pl-c1{color:#fdc251!important}.highlight-source-js .pl-sc{color:#e6e1dc!important}.highlight-text-html-php .pl-s3{color:#fc6f09!important}.highlight-source-css .pl-s3{color:#1edafb!important}.highlight-source-python .pl-c1{color:#fdc251!important} EOT;
Mono Industrial clear "Mono Industrial clear" <<<EOT
/*! GitHub: Mono Industrial clear *\/.CodeMirror,.highlight{background-color:#222c28!important;color:#fff!important}.blob-code,.blob-code-inner{color:#fff!important}.pl-c,.pl-c span{color:#666c68!important;background-color:#304830!important}.pl-c1{color:#e98800!important}.pl-e{color:#a8b3ab!important}.pl-en{color:#fff!important}.pl-ent{color:#a39e64!important}.pl-k{color:#a39e64!important}.pl-mb{color:#e98800!important;font-weight:700!important}.pl-mdh{color:#a39e64!important}.pl-mdr{color:#a39e64!important}.pl-mh{color:#5778b6!important}.pl-mh .pl-en{color:#5778b6!important;font-weight:700!important}.pl-mi{color:#a39e64!important;font-style:italic!important}.pl-ml{color:#a39e64!important}.pl-mm{color:#a39e64!important}.pl-mo{color:#a39e64!important}.pl-mp{color:#a39e64!important}.pl-mq{color:#666c68!important}.pl-mr{color:#a39e64!important}.pl-ms{color:#a39e64!important}.pl-pds{color:#fff!important}.pl-s{color:#c23b00!important}.pl-s1{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-pse .pl-s2{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-s2{color:#c23b00!important}.pl-s1 .pl-v{color:#a39e64!important}.pl-s3{color:#5778b6!important}.pl-sc{color:#fff!important}.pl-smi{color:#c23b00!important}.pl-smp{color:#c23b00!important}.pl-sr{color:#fff!important;background-color:#151c19!important}.pl-sr .pl-cce{color:#5778b6!important}.pl-sr .pl-sra{color:#c23b00!important}.pl-sr .pl-sre{color:#c23b00!important}.pl-src{color:#c23b00!important}.pl-st{color:#c23b00!important}.pl-stj{color:#c23b00!important}.pl-sv{color:#e98800!important}.pl-v{color:#5778b6!important}.pl-vo{color:#a8b3ab!important}.pl-vpf{color:#5778b6!important}.pl-mi1{color:#fff!important;background:rgba(0,150,0,.68)!important}.pl-mdht{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-md{color:#fff!important;background:rgba(196,0,0,.68)!important}.pl-mdhf{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-id{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-ii{color:#fff!important;background:rgba(153,0,0,.68)!important}.highlight-source-css .pl-ent{color:#e98800!important}.highlight-text-html-php .pl-s{color:#a39e64!important}.highlight-text-html-php .pl-st{color:#a39e64!important}.highlight-text-html-php .pl-s3{color:#588e60!important}.highlight-source-python .pl-st{color:#a39e64!important} EOT;
Mono Industrial "Mono Industrial" <<<EOT
/*! GitHub: Mono Industrial *\/.CodeMirror,.highlight{background-color:#222c28!important;color:#fff!important}.blob-code,.blob-code-inner{color:#fff!important}.pl-c,.pl-c span{color:#666c68!important;background-color:#151c19!important}.pl-c1{color:#e98800!important}.pl-e{color:#a8b3ab!important}.pl-en{color:#fff!important}.pl-ent{color:#a39e64!important}.pl-k{color:#a39e64!important}.pl-mb{color:#e98800!important;font-weight:700!important}.pl-mdh{color:#a39e64!important}.pl-mdr{color:#a39e64!important}.pl-mh{color:#5778b6!important}.pl-mh .pl-en{color:#5778b6!important;font-weight:700!important}.pl-mi{color:#a39e64!important;font-style:italic!important}.pl-ml{color:#a39e64!important}.pl-mm{color:#a39e64!important}.pl-mo{color:#a39e64!important}.pl-mp{color:#a39e64!important}.pl-mq{color:#666c68!important}.pl-mr{color:#a39e64!important}.pl-ms{color:#a39e64!important}.pl-pds{color:#fff!important}.pl-s{color:#c23b00!important}.pl-s1{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-pse .pl-s2{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-s2{color:#c23b00!important}.pl-s1 .pl-v{color:#a39e64!important}.pl-s3{color:#5778b6!important}.pl-sc{color:#fff!important}.pl-smi{color:#c23b00!important}.pl-smp{color:#c23b00!important}.pl-sr{color:#fff!important;background-color:#151c19!important}.pl-sr .pl-cce{color:#5778b6!important}.pl-sr .pl-sra{color:#c23b00!important}.pl-sr .pl-sre{color:#c23b00!important}.pl-src{color:#c23b00!important}.pl-st{color:#c23b00!important}.pl-stj{color:#c23b00!important}.pl-sv{color:#e98800!important}.pl-v{color:#5778b6!important}.pl-vo{color:#a8b3ab!important}.pl-vpf{color:#5778b6!important}.pl-mi1{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-mdht{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-md{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-mdhf{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-id{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-ii{color:#fff!important;background:rgba(153,0,0,.68)!important}.highlight-source-css .pl-ent{color:#e98800!important}.highlight-text-html-php .pl-s{color:#a39e64!important}.highlight-text-html-php .pl-st{color:#a39e64!important}.highlight-text-html-php .pl-s3{color:#588e60!important}.highlight-source-python .pl-st{color:#a39e64!important} EOT;
Monokai - Spacegray Eighties "Monokai - Spacegray Eighties" <<<EOT
/*! GitHub: Monokai - Spacegray Eighties *\/.CodeMirror,.highlight{background-color:#1c1c1c!important;color:#f8f8f8!important}.blob-code,.blob-code-inner{color:#f8f8f8!important}.pl-c,.pl-c span{color:grey!important}.pl-c1{color:#66d9ef!important}.pl-cce{color:#66d9ef!important}.pl-cn{color:#ae81ff!important}.pl-coc{color:#ae81ff!important}.pl-cos{color:#e6db74!important}.pl-e{color:#f92672!important}.pl-ef{color:#a6e22e!important}.pl-en{color:#a6e22e!important}.pl-enc{color:#66d9ef!important}.pl-enf{color:#a6e22e!important}.pl-enm{color:#a6e22e!important}.pl-ens{color:#66d9ef!important}.pl-ent{color:#f92672!important}.pl-entc{color:#a6e22e!important}.pl-enti{color:#a6e22e!important;font-weight:700!important}.pl-entm{color:#a6e22e!important}.pl-eoa{color:#f92672!important}.pl-eoac{color:#a6e22e!important}.pl-eoac .pl-pde{color:#a6e22e!important}.pl-eoai{color:#f92672!important}.pl-eoai .pl-pde{color:#f92672!important}.pl-eoi{color:#a6e22e!important}.pl-k{color:#f92672!important}.pl-ko{color:#f92672!important}.pl-kolp{color:#f92672!important}.pl-kos{color:#66d9ef!important}.pl-kou{color:#66d9ef!important}.pl-mai .pl-sf{color:#a6e22e!important}.pl-mb{color:#e6db74!important;font-weight:700!important}.pl-mc{color:#f92672!important}.pl-mh .pl-pdh{color:#66d9ef!important}.pl-mi{color:#f92672!important;font-style:italic!important}.pl-ml{color:#e6db74!important}.pl-mm{color:#a6e22e!important}.pl-mp{color:#66d9ef!important}.pl-mp1 .pl-sf{color:#66d9ef!important}.pl-mq{color:#66d9ef!important}.pl-mr{color:#f92672!important}.pl-ms{color:#f92672!important}.pl-pdb{color:#e6db74!important;font-weight:700!important}.pl-pdc{color:#75715e!important;font-style:italic!important}.pl-pdc1{color:#ae81ff!important}.pl-pde{color:#66d9ef!important}.pl-pdi{color:#f92672!important;font-style:italic!important}.pl-pds{color:#f8f8f8!important}.pl-pdv{color:#a6e22e!important}.pl-pse{color:#66d9ef!important}.pl-pse .pl-s2{color:#66d9ef!important}.pl-s{color:#e6db74!important}.pl-s1{color:#e6db74!important}.pl-s2{color:#f8f8f8!important}.pl-mp .pl-s3{color:#66d9ef!important}.pl-s3{color:#f92672!important}.pl-sc{color:#fd971f!important}.pl-scp{color:#ae81ff!important}.pl-sf{color:#fd971f!important}.pl-smc{color:#f92672!important}.pl-smi{color:#fd971f!important}.pl-smp{color:#f92672!important}.pl-sok{color:#f92672!important}.pl-sol{color:#e6db74!important}.pl-som{color:#a6e22e!important}.pl-sr{color:#a6e22e!important}.pl-sra{color:#f92672!important}.pl-src{color:#f92672!important}.pl-sre{color:#f92672!important}.pl-st{color:#66d9ef!important}.pl-stj{color:#f8f8f8!important}.pl-stp{color:#f92672!important}.pl-sv{color:#f92672!important}.pl-v{color:#f92672!important}.pl-vi{color:#f92672!important}.pl-vo{color:#a6e22e!important}.pl-vpf{color:#f92672!important}.pl-mi1{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#66d9ef!important;font-weight:400!important}.pl-mdh{color:#a6e22e!important;font-weight:400!important}.pl-mdi{color:#a6e22e!important;font-weight:400!important}.pl-ib{background-color:#a6e22e!important;color:#272822!important}.pl-id{background-color:#a6e22e!important;color:#272822!important}.pl-ii,.pl-ii .pl-cce{background-color:#a6e22e!important;color:#272822!important}.pl-iu{background-color:#a6e22e!important;color:#272822!important}.pl-mo{color:#fd971f!important}.pl-mri{color:#66d9ef!important}.pl-ms1{background-color:#fd971f!important}.pl-va{color:#66d9ef!important}.pl-vpu{color:#66d9ef!important}.pl-entl{color:#fd971f!important} EOT;
Monokai "Monokai" <<<EOT
/*! GitHub: Monokai *\/.CodeMirror,.highlight{background-color:#272822!important;color:#f8f8f2!important}.blob-code,.blob-code-inner{color:#f8f8f2!important}.pl-c,.pl-c span{color:#75715e!important;font-style:italic!important}.pl-c1{color:#ae81ff!important}.pl-cce{color:#66d9ef!important}.pl-cn{color:#66d9ef!important}.pl-coc{color:#66d9ef!important}.pl-cos{color:#e6db74!important}.pl-e{color:#a6e22e!important}.pl-ef{color:#a6e22e!important}.pl-en{color:#a6e22e!important}.pl-enc{color:#66d9ef!important}.pl-enf{color:#a6e22e!important}.pl-enm{color:#a6e22e!important}.pl-ens{color:#66d9ef!important}.pl-ent{color:#f92672!important}.pl-entc{color:#a6e22e!important}.pl-enti{color:#a6e22e!important;font-weight:700!important}.pl-entm{color:#a6e22e!important}.pl-eoa{color:#f92672!important}.pl-eoac{color:#a6e22e!important}.pl-eoac .pl-pde{color:#a6e22e!important}.pl-eoai{color:#f92672!important}.pl-eoai .pl-pde{color:#f92672!important}.pl-eoi{color:#a6e22e!important}.pl-k{color:#f92672!important}.pl-ko{color:#f92672!important}.pl-kolp{color:#f92672!important}.pl-kos{color:#66d9ef!important}.pl-kou{color:#66d9ef!important}.pl-mai .pl-sf{color:#a6e22e!important}.pl-mb{color:#e6db74!important;font-weight:700!important}.pl-mc{color:#f92672!important}.pl-mh .pl-pdh{color:#66d9ef!important}.pl-mi{color:#f92672!important;font-style:italic!important}.pl-ml{color:#e6db74!important}.pl-mm{color:#a6e22e!important}.pl-mp{color:#66d9ef!important}.pl-mp1 .pl-sf{color:#66d9ef!important}.pl-mq{color:#66d9ef!important}.pl-mr{color:#f92672!important}.pl-ms{color:#f92672!important}.pl-pdb{color:#e6db74!important;font-weight:700!important}.pl-pdc{color:#75715e!important;font-style:italic!important}.pl-pdc1{color:#ae81ff!important}.pl-pde{color:#66d9ef!important}.pl-pdi{color:#f92672!important;font-style:italic!important}.pl-pds{color:#e6db74!important}.pl-pdv{color:#a6e22e!important}.pl-pse{color:#66d9ef!important}.pl-pse .pl-s2{color:#66d9ef!important}.pl-s{color:#e6db74!important}.pl-s1{color:#e6db74!important}.pl-s2{color:#f8f8f2!important}.pl-mp .pl-s3{color:#66d9ef!important}.pl-s3{color:#f92672!important}.pl-sc{color:#fd971f!important}.pl-scp{color:#ae81ff!important}.pl-sf{color:#fd971f!important}.pl-smc{color:#f92672!important}.pl-smi{color:#66d9ef!important}.pl-smp{color:#f92672!important}.pl-sok{color:#f92672!important}.pl-sol{color:#e6db74!important}.pl-som{color:#a6e22e!important}.pl-sr{color:#a6e22e!important}.pl-sra{color:#f92672!important}.pl-src{color:#f92672!important}.pl-sre{color:#f92672!important}.pl-st{color:#66d9ef!important}.pl-stj{color:#f8f8f2!important}.pl-stp{color:#66d9ef!important}.pl-sv{color:#66d9ef!important}.pl-v{color:#66d9ef!important}.pl-vi{color:#66d9ef!important}.pl-vo{color:#a6e22e!important}.pl-vpf{color:#66d9ef!important}.pl-mi1{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#66d9ef!important;font-weight:400!important}.pl-mdh{color:#a6e22e!important;font-weight:400!important}.pl-mdi{color:#a6e22e!important;font-weight:400!important}.pl-ib{background-color:#a6e22e!important;color:#272822!important}.pl-id{background-color:#a6e22e!important;color:#272822!important}.pl-ii,.pl-ii .pl-cce{background-color:#a6e22e!important;color:#272822!important}.pl-iu{background-color:#a6e22e!important;color:#272822!important}.pl-mo{color:#fd971f!important}.pl-mri{color:#66d9ef!important}.pl-ms1{background-color:#fd971f!important}.pl-va{color:#66d9ef!important}.pl-vpu{color:#66d9ef!important}.pl-entl{color:#fd971f!important} EOT;
Obsidian "Obsidian" <<<EOT
/*! GitHub: Obsidian *\/.CodeMirror,.highlight{background:#293134!important;color:#e0e2e4!important}.blob-code,.blob-code-inner{color:#e0e2e4!important}.pl-c,.pl-c span{color:#66747b!important;font-style:italic!important}.pl-c1{color:#ffcd22!important}.pl-e{color:#93c763!important}.pl-en{color:#678cb1!important}.pl-ent{color:#e0e2e4!important}.pl-k{color:#93c763!important}.pl-mb{color:#ec7600!important;font-weight:700!important}.pl-mdh{color:#93c763!important}.pl-mdr{color:#93c763!important}.pl-mh{color:#66747b!important}.pl-mh .pl-en{color:#66747b!important;font-weight:700!important}.pl-mi{color:#93c763!important;font-style:italic!important}.pl-ml{color:#93c763!important}.pl-mm{color:#93c763!important}.pl-mo{color:#93c763!important}.pl-mp{color:#93c763!important}.pl-mq{color:#66747b!important}.pl-mr{color:#93c763!important}.pl-ms{color:#93c763!important}.pl-pds{color:#ec7600!important}.pl-s{color:#ec7600!important}.pl-s1{color:#e0e2e4!important}.pl-s1 .pl-pse .pl-s2{color:#ec7600!important}.pl-s1 .pl-s2{color:#e0e2e4!important}.pl-s1 .pl-v{color:#93c763!important}.pl-s3{color:#93c763!important}.pl-sc{color:#96989a!important}.pl-smi{color:#e0e2e4!important}.pl-smp{color:#e0e2e4!important}.pl-sr{color:#d39745!important}.pl-sr .pl-cce{color:#ffcd22!important}.pl-sr .pl-sra{color:#d39745!important}.pl-sr .pl-sre{color:#d39745!important}.pl-src{color:#d39745!important}.pl-st{color:#da4236!important}.pl-stj{color:#e0e2e4!important}.pl-sv{color:#ec7600!important}.pl-v{color:#678cb1!important}.pl-vo{color:#e0e2e4!important}.pl-vpf{color:#e0e2e4!important}.pl-mi1{color:#e0e2e4!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e0e2e4!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-ii{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-c1>.pl-c1{color:#678cb1!important} EOT;
Pastel on Dark "Pastel on Dark" <<<EOT
/*! GitHub: Pastel on Dark *\/.CodeMirror,.highlight{background-color:#2c2828!important;color:#e6e1dc!important}.blob-code,.blob-code-inner{color:#e6e1dc!important}.pl-c,.pl-c span{color:#a6c6ff!important;font-style:italic!important}.pl-c1{color:#a5c261!important}.pl-cce{color:#afa472!important}.pl-cn{color:#ccc!important}.pl-coc{color:#757ad8!important}.pl-cos{color:#66a968!important}.pl-e{color:#e6e1dc!important}.pl-ef{color:#aeb2f8!important}.pl-en{color:#757ad8!important}.pl-enc{color:#757ad8!important}.pl-enf{color:#aeb2f8!important}.pl-enm{color:#aeb2f8!important}.pl-ens{color:#757ad8!important}.pl-ent{color:#6782d3!important}.pl-entc{color:#aeb2f8!important}.pl-enti{color:#aeb2f8!important;font-weight:700!important}.pl-entm{color:#aeb2f8!important}.pl-eoa{color:#e6e1dc!important}.pl-eoac{color:#aeb2f8!important}.pl-eoac .pl-pde{color:#aeb2f8!important}.pl-eoai{color:#e6e1dc!important}.pl-eoai .pl-pde{color:#e6e1dc!important}.pl-eoi{color:#aeb2f8!important}.pl-k{color:#757ad8!important}.pl-ko{color:#e6e1dc!important}.pl-kolp{color:#e6e1dc!important}.pl-kos{color:#757ad8!important}.pl-kou{color:#757ad8!important}.pl-mai .pl-sf{color:#aeb2f8!important}.pl-mb{color:#66a968!important;font-weight:700!important}.pl-mc{color:#e6e1dc!important}.pl-mh .pl-pdh{color:#757ad8!important}.pl-mi{color:#e6e1dc!important;font-style:italic!important}.pl-ml{color:#66a968!important}.pl-mm{color:#aeb2f8!important}.pl-mp{color:#757ad8!important}.pl-mp1 .pl-sf{color:#757ad8!important}.pl-mq{color:#757ad8!important}.pl-mr{color:#e6e1dc!important}.pl-ms{color:#e6e1dc!important}.pl-pdb{color:#66a968!important;font-weight:700!important}.pl-pdc{color:#a6c6ff!important;font-style:italic!important}.pl-pdc1{color:#4fb7c5!important}.pl-pde{color:#757ad8!important}.pl-pdi{color:#e6e1dc!important;font-style:italic!important}.pl-pds{color:#ad9361!important}.pl-pdv{color:#aeb2f8!important}.pl-pse{color:#757ad8!important}.pl-pse .pl-s2{color:#757ad8!important}.pl-s{color:#757ad8!important}.pl-s1{color:#ad9361!important}.pl-s2{color:#8f938f!important}.pl-mp .pl-s3{color:#757ad8!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#757ad8!important}.pl-scp{color:#4fb7c5!important}.pl-sf{color:#bebf55!important}.pl-smc{color:#aeb2f8!important}.pl-smi{color:#bebf55!important}.pl-smp{color:#bebf55!important}.pl-sok{color:#e6e1dc!important}.pl-sol{color:#66a968!important}.pl-som{color:#aeb2f8!important}.pl-sr{color:#aeb2f8!important}.pl-sra{color:#797878!important}.pl-src{color:#e9c062!important}.pl-sre{color:#e9c062!important}.pl-st{color:#a5c261!important}.pl-stj{color:#8f938f!important}.pl-stp{color:#757ad8!important}.pl-sv{color:#757ad8!important}.pl-v{color:#757ad8!important}.pl-vi{color:#757ad8!important}.pl-vo{color:#a5c261!important}.pl-vpf{color:#757ad8!important}.pl-mi1{color:#66a968!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#66a968!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#aeb2f8!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#aeb2f8!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#757ad8!important;font-weight:400!important}.pl-mdh{color:#bebf55!important;font-weight:400!important}.pl-mdi{color:#bebf55!important;font-weight:400!important}.pl-ib{background-color:#aeb2f8!important}.pl-id{background-color:#aeb2f8!important;color:#fff!important}.pl-ii,.pl-ii .pl-cce{background-color:#aeb2f8!important;color:#fff!important}.pl-iu{background-color:#aeb2f8!important}.pl-mo{color:#bebf55!important}.pl-mri{color:#757ad8!important}.pl-ms1{background-color:#bebf55!important}.pl-va{color:#757ad8!important}.pl-vpu{color:#757ad8!important}.pl-entl{color:#bebf55!important}.highlight-source-css .pl-v{color:#ad9361!important}.highlight-text-html-basic .pl-e{color:#6782d3!important}.highlight-text-tex .pl-s3{color:#757ad8!important} EOT;
Solarized Dark "Solarized Dark" <<<EOT
/*! GitHub: Solarized Dark *\/.CodeMirror,.highlight{background:#002b36!important;color:#839496!important}.blob-code,.blob-code-inner{color:#839496!important}.pl-c,.pl-c span{color:#586e75!important;font-style:italic!important}.pl-c1{color:#2aa198!important}.pl-e{color:#268bd2!important}.pl-en{color:#268bd2!important}.pl-ent{color:#268bd2!important}.pl-k{color:#859900!important}.pl-mb{color:#2aa198!important;font-weight:700!important}.pl-mdh{color:#859900!important}.pl-mdr{color:#859900!important}.pl-mh{color:#cb4b16!important}.pl-mh .pl-en{color:#cb4b16!important;font-weight:700!important}.pl-mi{color:#859900!important;font-style:italic!important}.pl-ml{color:#859900!important}.pl-mm{color:#859900!important}.pl-mo{color:#859900!important}.pl-mp{color:#859900!important}.pl-mq{color:#586e75!important}.pl-mr{color:#859900!important}.pl-ms{color:#859900!important}.pl-pds{color:#2aa198!important}.pl-s{color:#268bd2!important}.pl-s1{color:#2aa198!important}.pl-s1 .pl-pse .pl-s2{color:#2aa198!important}.pl-s1 .pl-s2{color:#839496!important}.pl-s1 .pl-v{color:#859900!important}.pl-s3{color:#859900!important}.pl-sc{color:#cb4b16!important}.pl-smi{color:#839496!important}.pl-smp{color:#839496!important}.pl-sr{color:#d30102!important}.pl-sr .pl-cce{color:#cb4b16!important}.pl-sr .pl-sra{color:#d30102!important}.pl-sr .pl-sre{color:#d30102!important}.pl-src{color:#d30102!important}.pl-st{color:#dc322f!important}.pl-stj{color:#839496!important}.pl-sv{color:#2aa198!important}.pl-v{color:#268bd2!important}.pl-vo{color:#839496!important}.pl-vpf{color:#839496!important}.pl-mi1{color:#839496!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#839496!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-ii{color:#839496!important;background:rgba(64,0,0,.5)!important}.highlight-source-css .pl-k{color:#586e75!important}.highlight-source-c\+\+ .pl-s{color:#dc322f!important} EOT;
Terminal "Terminal" <<<EOT
/*! GitHub: Terminal *\/.CodeMirror,.highlight{background-color:#000!important;color:#dedede!important}.blob-code,.blob-code-inner{color:#dedede!important}.pl-c,.pl-c span{color:#ff4500!important;font-style:italic!important}.pl-c1{color:#e78c45!important}.pl-e{color:#d54e53!important}.pl-en{color:#dedede!important}.pl-ent{color:tomato!important}.pl-k{color:tomato!important}.pl-mb{color:#e78c45!important;font-weight:700!important}.pl-mdh{color:tomato!important}.pl-mdr{color:tomato!important}.pl-mh{color:#b9ca4a!important}.pl-mh .pl-en{color:#b9ca4a!important;font-weight:700!important}.pl-mi{color:tomato!important;font-style:italic!important}.pl-ml{color:tomato!important}.pl-mm{color:tomato!important}.pl-mo{color:tomato!important}.pl-mp{color:tomato!important}.pl-mq{color:#ff4500!important}.pl-mr{color:tomato!important}.pl-ms{color:tomato!important}.pl-pds{color:#b9ca4a!important}.pl-s{color:tomato!important}.pl-s1{color:#b9ca4a!important}.pl-s1 .pl-pse .pl-s2{color:#e78c45!important}.pl-s1 .pl-s2{color:#7aa6da!important}.pl-s1 .pl-v{color:tomato!important}.pl-s3{color:#d54e53!important}.pl-sc{color:#dedede!important}.pl-smi{color:#7aa6da!important}.pl-smp{color:#7aa6da!important}.pl-sr{color:#d54e53!important}.pl-sr .pl-cce{color:#b9ca4a!important}.pl-sr .pl-sra{color:#d54e53!important}.pl-sr .pl-sre{color:#d54e53!important}.pl-src{color:#d54e53!important}.pl-st{color:tomato!important}.pl-stj{color:#7aa6da!important}.pl-sv{color:#e78c45!important}.pl-v{color:#d54e53!important}.pl-vo{color:#7aa6da!important}.pl-vpf{color:#e78c45!important}.pl-mi1{color:#dedede!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#dedede!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#dedede!important;background:red!important}.pl-mdhf{color:#dedede!important;background:red!important}.pl-id{color:#ced2cf!important;background:#b798bf!important}.pl-ii{color:#ff0!important;background:red!important}.highlight-source-css .pl-k{color:#dedede!important}.highlight-source-css .pl-s3{color:#e7c547!important}.highlight-source-css .pl-sc{color:#e7c547!important}.highlight-source-css .pl-ent{color:#dedede!important}.highlight-text-html-basic .pl-ent{color:#d54e53!important}.highlight-source-js .pl-k{color:#ff1493!important}.highlight-text-html-php .pl-s3{color:#7aa6da!important}.highlight-text-html-php .pl-vo{color:#d54e53!important}.highlight-source-python .pl-s3{color:#7aa6da!important} EOT;
Tomorrow Night Blue "Tomorrow Night Blue" <<<EOT
/*! GitHub: Tomorrow Night Blue *\/.CodeMirror,.highlight{background-color:#002451!important;color:#fff!important}.blob-code,.blob-code-inner{color:#fff!important}.pl-c,.pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii,.pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} EOT;
Tomorrow Night Bright "Tomorrow Night Bright" <<<EOT
/*! GitHub: Tomorrow Night Bright *\/.CodeMirror,.highlight{background-color:#000!important;color:#dedede!important}.blob-code,.blob-code-inner{color:#dedede!important}.pl-c,.pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii,.pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} EOT;
Tomorrow Night Eighties "Tomorrow Night Eighties" <<<EOT
/*! GitHub: Tomorrow Night Eighties *\/.CodeMirror,.highlight{background-color:#000!important;color:#ccc!important}.blob-code,.blob-code-inner{color:#ccc!important}.pl-c,.pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii,.pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} EOT;
Tomorrow Night "Tomorrow Night" <<<EOT
/*! GitHub: Tomorrow Night *\/.CodeMirror,.highlight{background-color:#1d1f21!important;color:#c5c8c6!important}.blob-code,.blob-code-inner{color:#c5c8c6!important}.pl-c,.pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii,.pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} EOT;
Twilight "Twilight" <<<EOT
/*! GitHub: Twilight *\/.CodeMirror,.highlight{background:#141414!important;color:#ccc!important}.blob-code,.blob-code-inner{color:#ccc!important}.pl-c,.pl-c span{color:#5f5a60!important;font-style:italic!important}.pl-c1{color:#cf6a4c!important}.pl-cce{color:#cf6a4c!important;font-weight:400!important}.pl-cn{color:#cf6a4c!important}.pl-coc{color:#cf6a4c!important}.pl-cos{color:#8f9d6a!important}.pl-e{color:#ac885b!important}.pl-ef{color:#ac885b!important}.pl-en{color:#ac885b!important}.pl-enc{color:#cf6a4c!important}.pl-enf{color:#ac885b!important}.pl-enm{color:#ac885b!important}.pl-ens{color:#cf6a4c!important}.pl-ent{color:#cda869!important}.pl-entc{color:#ac885b!important}.pl-enti{color:#ac885b!important;font-weight:700!important}.pl-entm{color:#7587a6!important}.pl-eoa{color:#cda869!important}.pl-eoac{color:#7587a6!important}.pl-eoac .pl-pde{color:#7587a6!important}.pl-eoai{color:#cda869!important}.pl-eoai .pl-pde{color:#cda869!important}.pl-eoi{color:#ac885b!important}.pl-k{color:#cda869!important}.pl-ko{color:#cda869!important}.pl-kolp{color:#cda869!important}.pl-kos{color:#cf6a4c!important}.pl-kou{color:#cf6a4c!important}.pl-mai .pl-sf{color:#7587a6!important}.pl-mb{color:#8f9d6a!important;font-weight:700!important}.pl-mc{color:#cda869!important}.pl-mh{color:#cf6a4c!important;font-weight:400!important}.pl-mh .pl-pdh{color:#cf6a4c!important}.pl-mi{color:#cda869!important;font-style:italic!important}.pl-ml{color:#8f9d6a!important}.pl-mm{color:#7587a6!important}.pl-mp{color:#c5af75!important}.pl-mp1 .pl-sf{color:#dad085!important}.pl-mq{color:#cf6a4c!important}.pl-mr{color:#cda869!important}.pl-ms{color:#cda869!important}.pl-pdb{color:#8f9d6a!important;font-weight:700!important}.pl-pdc{color:#5f5a60!important;font-style:italic!important}.pl-pdc1{color:#cf6a4c!important}.pl-pde{color:#cf6a4c!important}.pl-pdi{color:#cda869!important;font-style:italic!important}.pl-pds{color:#8f9d6a!important}.pl-pdv{color:#7587a6!important}.pl-pse{color:#cf6a4c!important}.pl-pse .pl-s2{color:#cf6a4c!important}.pl-s{color:#f9ee98!important}.pl-s1{color:#8f9d6a!important}.pl-s2{color:#ccc!important}.pl-mp .pl-s3{color:#cda869!important}.pl-s3{color:#dad085!important}.pl-sc{color:#dad085!important}.pl-scp{color:#cf6a4c!important}.pl-sf{color:#dad085!important}.pl-smc{color:#ac885b!important}.pl-smi{color:#ccc!important}.pl-smp{color:#ccc!important}.pl-sok{color:#cda869!important}.pl-sol{color:#8f9d6a!important}.pl-som{color:#7587a6!important}.pl-sr{color:#7587a6!important}.pl-sra{color:#cda869!important}.pl-src{color:#cda869!important}.pl-sre{color:#cda869!important}.pl-st{color:#cda869!important}.pl-stj{color:#7587a6!important}.pl-stp{color:#9b859d!important}.pl-sv{color:#9b859d!important}.pl-v{color:#9b859d!important}.pl-vi{color:#cf6a4c!important}.pl-vo{color:#ac885b!important}.pl-vpf{color:#7587a6!important}.pl-mi1{color:#55a532!important;background:#020!important}.pl-mdht{color:#55a532!important;background:#020!important}.pl-md{color:#bd2c00!important;background:#200!important}.pl-mdhf{color:#bd2c00!important;background:#200!important}.pl-mdr{color:#cf6a4c!important;font-weight:400!important}.pl-mdh{color:#7587a6!important;font-weight:400!important}.pl-mdi{color:#7587a6!important;font-weight:400!important}.pl-ib{background-color:#f93!important}.pl-id{background-color:#a31515!important;color:#fff!important}.pl-ii,.pl-ii .pl-cce{background-color:#df5000!important;color:#fff!important}.pl-iu{background-color:#b4b7b4!important}.pl-mo{color:#969896!important}.pl-mri{color:teal!important}.pl-ms1{background-color:#f5f5f5!important}.pl-va{color:teal!important}.pl-vpu{color:teal!important}.pl-entl{color:#ccc!important} EOT;
Vibrant Ink "Vibrant Ink" <<<EOT
/*! GitHub: Vibrant Ink *\/.CodeMirror,.highlight{background-color:#0f0f0f!important;color:#fff!important}.blob-code,.blob-code-inner{color:#fff!important}.pl-c,.pl-c span{color:#93c!important;font-style:italic!important}.pl-c1{color:#399!important}.pl-e{color:#f60!important}.pl-en{color:#fff!important}.pl-ent{color:#fc0!important}.pl-k{color:#f60!important}.pl-mb{color:#6f0!important;font-weight:700!important}.pl-mdh{color:#f60!important}.pl-mdr{color:#f60!important}.pl-mh{color:#9c9!important}.pl-mh .pl-en{color:#9c9!important;font-weight:700!important}.pl-mi{color:#f60!important;font-style:italic!important}.pl-ml{color:#f60!important}.pl-mm{color:#f60!important}.pl-mo{color:#f60!important}.pl-mp{color:#f60!important}.pl-mq{color:#93c!important}.pl-mr{color:#f60!important}.pl-ms{color:#f60!important}.pl-pds{color:#6f0!important}.pl-s{color:#fc0!important}.pl-s1{color:#6f0!important}.pl-s1 .pl-pse .pl-s2{color:#6f0!important}.pl-s1 .pl-s2{color:#399!important}.pl-s1 .pl-v{color:#f60!important}.pl-s3{color:#fc0!important}.pl-sc{color:#fff!important}.pl-smi{color:#399!important}.pl-smp{color:#399!important}.pl-sr{color:#44b4cc!important}.pl-sr .pl-cce{color:#9c9!important}.pl-sr .pl-sra{color:#44b4cc!important}.pl-sr .pl-sre{color:#44b4cc!important}.pl-src{color:#6f0!important}.pl-st{color:#f60!important}.pl-stj{color:#399!important}.pl-sv{color:#6f0!important}.pl-v{color:#fc0!important}.pl-vo{color:#399!important}.pl-vpf{color:#fff!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#fff!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#cf3!important;background:#000!important}.pl-ii{color:#cf3!important;background:#000!important}.highlight-source-css .pl-c1{color:#9c9!important}.highlight-source-css .pl-ent{color:#399!important}.highlight-source-css .pl-s3{color:#fff!important}.highlight-source-css .pl-sc{color:#399!important}.highlight-text-html-basic .pl-ent{color:#f60!important}.highlight-text-html-basic .pl-e{color:#9c9!important}.highlight-source-js .pl-vpf{color:#fc0!important}.highlight-text-html-php .pl-s{color:#f60!important}.highlight-text-html-php .pl-s3{color:#f60!important}.highlight-text-html-php .pl-vo{color:#fc0!important}.highlight-source-c\+\+ .pl-s3{color:#fff!important} EOT;
}
@advanced dropdown syntax-codemirror "CodeMirror syntax theme" {
Ambiance "Ambiance" <<<EOT
/*! CodeMirror: Ambiance *\/.cm-header{color:#00f!important}.cm-quote{color:#24c2c7!important}.cm-keyword{color:#cda869!important}.cm-atom{color:#cf7ea9!important}.cm-number{color:#78cf8a!important}.cm-def{color:#aac6e3!important}.cm-variable{color:#ffb795!important}.cm-variable-2{color:#eed1b3!important}.cm-variable-3{color:#faded3!important}.cm-property{color:#eed1b3!important}.cm-operator{color:#fa8d6a!important}.cm-comment{color:#555!important;font-style:italic!important}.cm-string{color:#8f9d6a!important}.cm-string-2{color:#9d937c!important}.cm-meta{color:#d2a8a1!important}.cm-qualifier{color:#ff0!important}.cm-builtin{color:#99c!important}.cm-bracket{color:#24c2c7!important}.cm-tag{color:#fee4ff!important}.cm-attribute{color:#9b859d!important}.cm-hr{color:pink!important}.cm-link{color:#f4c20b!important}.cm-special{color:#ff9d00!important}.cm-error{color:#af2018!important}.CodeMirror-matchingbracket{color:#0f0!important}.CodeMirror-nonmatchingbracket{color:#f22!important}.CodeMirror-selected{background:rgba(255,255,255,.15)!important}.CodeMirror-focused div.CodeMirror-selected{background:rgba(255,255,255,.1)!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(255,255,255,.1)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(255,255,255,.1)!important}.CodeMirror{line-height:1.4em!important;color:#e6e1dc!important;background-color:#202020!important;-webkit-box-shadow:inset 0 0 10px #000!important;-moz-box-shadow:inset 0 0 10px #000!important;box-shadow:inset 0 0 10px #000!important}.CodeMirror-gutters{background:#3d3d3d!important;border-right:1px solid #4d4d4d!important;box-shadow:0 10px 20px #000!important}.CodeMirror-linenumber{text-shadow:0 1px 1px #4d4d4d!important;color:#111!important;padding:0 5px!important}.CodeMirror-guttermarker{color:#aaa!important}.CodeMirror-guttermarker-subtle{color:#111!important}.CodeMirror-cursor{border-left:1px solid #7991e8!important}.CodeMirror-activeline-background{background:none repeat scroll 0 0 rgba(255,255,255,.031)!important} EOT;
Base16 Ocean Dark "Base16 Ocean Dark" <<<EOT
/*! CodeMirror: Base16 Ocean Dark *\/.CodeMirror{background:#2b303b!important;color:#dfe1e8!important}div.CodeMirror-selected{background:#343d46!important}.CodeMirror-gutters{background:#2b303b!important;border-right:0!important}.CodeMirror-linenumber{color:#65737e!important}.CodeMirror-cursor{border-left:1px solid #a7adba!important}span.cm-comment{color:#ab7967!important}span.cm-atom{color:#b48ead!important}span.cm-number{color:#b48ead!important}span.cm-attribute,span.cm-property{color:#a3be8c!important}span.cm-keyword{color:#bf616a!important}span.cm-string{color:#ebcb8b!important}span.cm-variable{color:#a3be8c!important}span.cm-variable-2{color:#8fa1b3!important}span.cm-def{color:#d08770!important}span.cm-error{background:#bf616a!important;color:#a7adba!important}span.cm-bracket{color:#dfe1e8!important}span.cm-tag{color:#bf616a!important}span.cm-link{color:#b48ead!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#fff!important} EOT;
Cobalt "Cobalt" <<<EOT
/*! CodeMirror: Cobalt *\/.CodeMirror{background:#002240!important;color:#fff!important}div.CodeMirror-selected{background:#b36539!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(179,101,57,.99)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(179,101,57,.99)!important}.CodeMirror-gutters{background:#002240!important;border-right:1px solid #aaa!important}.CodeMirror-guttermarker{color:#ffee80!important}.CodeMirror-guttermarker-subtle{color:#d0d0d0!important}.CodeMirror-linenumber{color:#d0d0d0!important}.CodeMirror-cursor{border-left:1px solid #fff!important}.cm-comment{color:#08f!important}.cm-atom{color:#845dc4!important}.cm-number,span.cm-attribute{color:#ff80e1!important}.cm-keyword{color:#ffee80!important}.cm-string{color:#3ad900!important}.cm-meta{color:#ff9d00!important}.cm-variable-2,span.cm-tag{color:#9effff!important}.cm-variable-3,span.cm-def{color:#fff!important}.cm-bracket{color:#d8d8d8!important}.cm-builtin,span.cm-special{color:#ff9e59!important}.cm-link{color:#845dc4!important}.cm-error{color:#9d1e15!important}.CodeMirror-activeline-background{background:#002d57!important}.CodeMirror-matchingbracket{outline:1px solid grey!important;color:#fff!important} EOT;
Dracula "Dracula" <<<EOT
/*! CodeMirror: Dracula *\/.CodeMirror,.CodeMirror-gutters{background-color:#282a36!important;color:#f8f8f2!important;border:none!important}.CodeMirror-gutters{color:#282a36!important}.CodeMirror-cursor{border-left:solid thin #f8f8f0!important}.CodeMirror-linenumber{color:#6d8a88!important}.CodeMirror-focused div.CodeMirror-selected{background:rgba(255,255,255,.1)!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(255,255,255,.1)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(255,255,255,.1)!important}span.cm-comment{color:#6272a4!important}span.cm-string,span.cm-string-2{color:#f1fa8c!important}span.cm-number{color:#bd93f9!important}span.cm-variable{color:#50fa7b!important}span.cm-variable-2{color:#fff!important}span.cm-def{color:#ffb86c!important}span.cm-keyword{color:#ff79c6!important}span.cm-operator{color:#ff79c6!important}span.cm-keyword{color:#ff79c6!important}span.cm-atom{color:#bd93f9!important}span.cm-meta{color:#f8f8f2!important}span.cm-tag{color:#ff79c6!important}span.cm-attribute{color:#50fa7b!important}span.cm-qualifier{color:#50fa7b!important}span.cm-property{color:#66d9ef!important}span.cm-builtin{color:#50fa7b!important}span.cm-variable-3{color:#50fa7b!important}.CodeMirror-activeline-background{background:rgba(255,255,255,.1)!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#fff!important} EOT;
Material "Material" <<<EOT
/*! CodeMirror: Material *\/.CodeMirror{background-color:#263238!important;color:rgba(233,237,237,1)!important}.CodeMirror-gutters{background:#263238!important;color:#537f7e!important;border:none!important}.CodeMirror-guttermarker,.CodeMirror-guttermarker-subtle,.CodeMirror-linenumber{color:#537f7e!important}.CodeMirror-cursor{border-left:1px solid #f8f8f0!important}div.CodeMirror-selected{background:rgba(255,255,255,.15)!important}.CodeMirror-focused div.CodeMirror-selected{background:rgba(255,255,255,.1)!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(255,255,255,.1)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(255,255,255,.1)!important}.CodeMirror-activeline-background{background:rgba(0,0,0,0)!important}.cm-keyword{color:rgba(199,146,234,1)!important}.cm-operator{color:rgba(233,237,237,1)!important}.cm-variable-2{color:#80cbc4!important}.cm-type,.cm-variable-3{color:#82b1ff!important}.cm-builtin{color:#decb6b!important}.cm-atom{color:#f77669!important}.cm-number{color:#f77669!important}.cm-def{color:rgba(233,237,237,1)!important}.cm-string{color:#c3e88d!important}.cm-string-2{color:#80cbc4!important}.cm-comment{color:#546e7a!important}.cm-variable{color:#82b1ff!important}.cm-tag{color:#80cbc4!important}.cm-meta{color:#80cbc4!important}.cm-attribute{color:#ffcb6b!important}.cm-property{color:#80cbae!important}.cm-qualifier{color:#decb6b!important}.cm-type,.cm-variable-3{color:#decb6b!important}.cm-tag{color:rgba(255,83,112,1)!important}.cm-error{color:rgba(255,255,255,1)!important;background-color:#ec5f67!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#fff!important} EOT;
Monokai - Spacegray Eighties "Monokai - Spacegray Eighties" <<<EOT
/*! CodeMirror: Monokai - Spacegray Eighties *\/.CodeMirror{background:#1c1c1c!important;color:#f8f8f8!important}.CodeMirror-selected{background:#3c3c3c!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(44,44,44,.99)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(44,44,44,.99)!important}.CodeMirror-gutters{background:#1c1c1c!important;border-right:0!important}.CodeMirror-guttermarker{color:#b9b9b9!important}.CodeMirror-guttermarker-subtle{color:#8a8a8a!important}.CodeMirror-linenumber{color:#8a8a8a!important}.CodeMirror-cursor{border-left:1px solid #f8f8f0!important}.cm-comment{color:grey!important}.cm-atom{color:#ae81ff!important}.cm-number{color:#ae81ff!important}.cm-property,span.cm-attribute{color:#a6e22e!important}.cm-keyword{color:#66d9ef!important;font-style:italic!important}.cm-builtin{color:#f8f8f8!important}.cm-string{color:#e6db74!important}.cm-variable{color:#f8f8f8!important}.cm-variable-2{color:#9effff!important}.cm-variable-3{color:#ae81ff!important}.cm-def{color:#66d9ef!important;font-style:italic!important}.cm-bracket{color:#f8f8f8!important}.cm-tag{color:#f92672!important}.cm-header{color:#ae81ff!important}.cm-link{color:#ae81ff!important}.cm-error{background:#1e0010!important;color:#960050!important}.CodeMirror-activeline-background{background:#2c2c2c!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#f8f8f8!important} EOT;
Monokai "Monokai" <<<EOT
/*! CodeMirror: Monokai *\/.CodeMirror{background:#272822!important;color:#f8f8f2!important}.CodeMirror-selected{background:#49483e!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(73,72,62,.99)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(73,72,62,.99)!important}.CodeMirror-gutters{background:#272822!important;border-right:0!important}.CodeMirror-guttermarker{color:#fff!important}.CodeMirror-guttermarker-subtle{color:#d0d0d0!important}.CodeMirror-linenumber{color:#d0d0d0!important}.CodeMirror-cursor{border-left:1px solid #f8f8f0!important}.cm-comment{color:#75715e!important}.cm-atom{color:#ae81ff!important}.cm-number{color:#ae81ff!important}.cm-property,span.cm-attribute{color:#a6e22e!important}.cm-keyword{color:#f92672!important}.cm-builtin{color:#66d9ef!important}.cm-string{color:#e6db74!important}.cm-variable{color:#f8f8f2!important}.cm-variable-2{color:#9effff!important}.cm-variable-3{color:#66d9ef!important}.cm-def{color:#fd971f!important}.cm-bracket{color:#f8f8f2!important}.cm-tag{color:#f92672!important}.cm-header{color:#ae81ff!important}.cm-link{color:#ae81ff!important}.cm-error{background:#f92672!important;color:#f8f8f0!important}.CodeMirror-activeline-background{background:#373831!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#fff!important} EOT;
Pastel on Dark "Pastel on Dark" <<<EOT
/*! CodeMirror: Pastel on Dark *\/.CodeMirror-selected{background:rgba(221,240,255,.2)!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(221,240,255,.2)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(221,240,255,.2)!important}.CodeMirror-gutters{background:#34302f!important;border-right:0!important;padding:0 3px!important}.CodeMirror-guttermarker{color:#fff!important}.CodeMirror-guttermarker-subtle{color:#8f938f!important}.CodeMirror-linenumber{color:#8f938f!important}.CodeMirror-cursor{border-left:1px solid #a7a7a7!important}.cm-comment{color:#a6c6ff!important}.cm-atom{color:#de8e30!important}.cm-number{color:#ccc!important}.cm-property{color:#8f938f!important}.cm-attribute{color:#a6e22e!important}.cm-keyword{color:#aeb2f8!important}.cm-string{color:#66a968!important}.cm-variable{color:#aeb2f8!important}.cm-variable-2{color:#bebf55!important}.cm-variable-3{color:#de8e30!important}.cm-def{color:#757ad8!important}.cm-bracket{color:#f8f8f2!important}.cm-tag{color:#c1c144!important}.cm-link{color:#ae81ff!important}.cm-qualifier,span.cm-builtin{color:#c1c144!important}.cm-error{background:#757ad8!important;color:#f8f8f0!important}.CodeMirror-activeline-background{background:rgba(255,255,255,.031)!important}.CodeMirror-matchingbracket{border:1px solid rgba(255,255,255,.25)!important;color:#8f938f!important;margin:-1px -1px 0 -1px!important} EOT;
Solarized Dark "Solarized Dark" <<<EOT
/*! CodeMirror: Solarized Dark *\/.CodeMirror-widget{text-shadow:none!important}.cm-header{color:#586e75!important}.cm-quote{color:#93a1a1!important}.cm-keyword{color:#cb4b16!important}.cm-atom{color:#d33682!important}.cm-number{color:#d33682!important}.cm-def{color:#2aa198!important}.cm-variable{color:#839496!important}.cm-variable-2{color:#b58900!important}.cm-variable-3{color:#6c71c4!important}.cm-property{color:#2aa198!important}.cm-operator{color:#6c71c4!important}.cm-comment{color:#586e75!important;font-style:italic!important}.cm-string{color:#859900!important}.cm-string-2{color:#b58900!important}.cm-meta{color:#859900!important}.cm-qualifier{color:#b58900!important}.cm-builtin{color:#d33682!important}.cm-bracket{color:#cb4b16!important}.CodeMirror-matchingbracket{color:#859900!important}.CodeMirror-nonmatchingbracket{color:#dc322f!important}.cm-tag{color:#93a1a1!important}.cm-attribute{color:#2aa198!important}.cm-hr{color:transparent!important;border-top:1px solid #586e75!important;display:block!important}.cm-link{color:#93a1a1!important;cursor:pointer!important}.cm-special{color:#6c71c4!important}.cm-em{color:#999!important;text-decoration:underline!important;text-decoration-style:dotted!important}.cm-strong{color:#eee!important}.cm-error,.cm-invalidchar{color:#586e75!important;border-bottom:1px dotted #dc322f!important}.CodeMirror-selected{background:#073642!important}.cm-s-solarized.cm-s-dark.CodeMirror ::selection{background:rgba(7,54,66,.99)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(7,54,66,.99)!important}.cm-s-solarized.CodeMirror{-moz-box-shadow:inset 7px 0 12px -6px #000!important;-webkit-box-shadow:inset 7px 0 12px -6px #000!important;box-shadow:inset 7px 0 12px -6px #000!important}.CodeMirror-gutters{border-right:0!important}.CodeMirror-gutters{background-color:#073642!important}.CodeMirror-linenumber{color:#586e75!important;text-shadow:#021014 0 -1px!important}.CodeMirror-linenumber{padding:0 5px!important}.CodeMirror-guttermarker-subtle{color:#586e75!important}.CodeMirror-guttermarker{color:#ddd!important}.CodeMirror-gutter .CodeMirror-gutter-text{color:#586e75!important}.CodeMirror-cursor{border-left:1px solid #819090!important}.CodeMirror-activeline-background{background:rgba(255,255,255,.06)!important} EOT;
Tomorrow Night Bright "Tomorrow Night Bright" <<<EOT
/*! CodeMirror: Tomorrow Night Bright *\/.CodeMirror-selected{background:#424242!important}.CodeMirror-gutters{background:#000!important;border-right:0!important}.CodeMirror-guttermarker{color:#e78c45!important}.CodeMirror-guttermarker-subtle{color:#777!important}.CodeMirror-linenumber{color:#424242!important}.CodeMirror-cursor{border-left:1px solid #6a6a6a!important}.cm-comment{color:#d27b53!important}.cm-atom{color:#a16a94!important}.cm-number{color:#a16a94!important}.cm-property,span.cm-attribute{color:#9c9!important}.cm-keyword{color:#d54e53!important}.cm-string{color:#e7c547!important}.cm-variable{color:#b9ca4a!important}.cm-variable-2{color:#7aa6da!important}.cm-def{color:#e78c45!important}.cm-bracket{color:#eaeaea!important}.cm-tag{color:#d54e53!important}.cm-link{color:#a16a94!important}.cm-error{background:#d54e53!important;color:#6a6a6a!important}.CodeMirror-activeline-background{background:#2a2a2a!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#fff!important} EOT;
Tomorrow Night Eighties "Tomorrow Night Eighties" <<<EOT
/*! CodeMirror: Tomorrow Night Eighties *\/.CodeMirror-selected{background:#2d2d2d!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(45,45,45,.99)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(45,45,45,.99)!important}.CodeMirror-gutters{background:#000!important;border-right:0!important}.CodeMirror-guttermarker{color:#f2777a!important}.CodeMirror-guttermarker-subtle{color:#777!important}.CodeMirror-linenumber{color:#515151!important}.CodeMirror-cursor{border-left:1px solid #6a6a6a!important}.cm-comment{color:#d27b53!important}.cm-atom{color:#a16a94!important}.cm-number{color:#a16a94!important}.cm-property,span.cm-attribute{color:#9c9!important}.cm-keyword{color:#f2777a!important}.cm-string{color:#fc6!important}.cm-variable{color:#9c9!important}.cm-variable-2{color:#69c!important}.cm-def{color:#f99157!important}.cm-bracket{color:#ccc!important}.cm-tag{color:#f2777a!important}.cm-link{color:#a16a94!important}.cm-error{background:#f2777a!important;color:#6a6a6a!important}.CodeMirror-activeline-background{background:#343600!important}.CodeMirror-matchingbracket{text-decoration:underline!important;color:#fff!important} EOT;
Twilight "Twilight" <<<EOT
/*! CodeMirror: Twilight *\/.CodeMirror-gutters{background:#222!important;border-right:1px solid #484848!important}.CodeMirror-guttermarker{color:#fff!important}.CodeMirror-guttermarker-subtle{color:#aaa!important}.CodeMirror-linenumber{color:#aaa!important}.CodeMirror-cursor{border-left:1px solid #fff!important}.CodeMirror-activeline-background{background:#27282e!important}.CodeMirror-matchingbracket{outline:1px solid grey!important;color:#fff!important}.cm-keyword{color:#f9ee98!important}.cm-atom{color:#fc0!important}.cm-number{color:#ca7841!important}.cm-def{color:#8da6ce!important}.cm-variable-2,span.cm-tag{color:#607392!important}.cm-variable-3,span.cm-def{color:#607392!important}.cm-operator{color:#cda869!important}.cm-comment{color:#777!important;font-style:italic!important;font-weight:400!important}.cm-string{color:#8f9d6a!important}.cm-string-2{color:#bd6b18!important}.cm-meta{background-color:#141414!important;color:#f7f7f7!important}.cm-builtin{color:#cda869!important}.cm-tag{color:#997643!important}.cm-attribute{color:#d6bb6d!important}.cm-header{color:#ff6400!important}.cm-hr{color:#aeaeae!important}.cm-link{color:#ad9361!important;font-style:italic!important;text-decoration:none!important}.cm-error{border-bottom:1px solid red!important} EOT;
Vibrant Ink "Vibrant Ink" <<<EOT
/*! CodeMirror: Vibrant Ink *\/.CodeMirror-selected{background:#35493c!important}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:rgba(53,73,60,.99)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:rgba(53,73,60,.99)!important}.CodeMirror-gutters{background:#002240!important;border-right:1px solid #aaa!important}.CodeMirror-guttermarker{color:#fff!important}.CodeMirror-guttermarker-subtle{color:#d0d0d0!important}.CodeMirror-linenumber{color:#d0d0d0!important}.CodeMirror-cursor{border-left:1px solid #fff!important}.cm-keyword{color:#cc7832!important}.cm-atom{color:#fc0!important}.cm-number{color:#ffee98!important}.cm-def{color:#8da6ce!important}.cm-s-vibrant span.cm-tag,.cm-variable-2{color:#ffc66d!important}.cm-s-vibrant span.cm-def,.cm-variable-3{color:#ffc66d!important}.cm-operator{color:#888!important}.cm-comment{color:gray!important;font-weight:700!important}.cm-string{color:#a5c25c!important}.cm-string-2{color:red!important}.cm-meta{color:#d8fa3c!important}.cm-builtin{color:#8da6ce!important}.cm-tag{color:#8da6ce!important}.cm-attribute{color:#8da6ce!important}.cm-header{color:#ff6400!important}.cm-hr{color:#aeaeae!important}.cm-link{color:#00f!important}.cm-error{border-bottom:1px solid red!important}.CodeMirror-activeline-background{background:#27282e!important}.CodeMirror-matchingbracket{outline:1px solid grey!important;color:#fff!important} EOT;
}
@advanced dropdown syntax-jupyter "Jupyter syntax theme" {
Base16 Ocean Dark "Base16 Ocean Dark" <<<EOT
/*! Jupyter: Base16 Ocean Dark *\/.highlight,.highlight pre,.highlight table{background:#2b303b!important;color:#eff1f5!important}.highlight .hll{background-color:#4f5b66!important}.highlight .c{color:#65737e!important}.highlight .err{color:#bf616a!important}.highlight .k{color:#b48ead!important}.highlight .l{color:#d08770!important}.highlight .h,.highlight .n{color:#eff1f5!important}.highlight .o{color:#96b5b4!important}.highlight .p{color:#eff1f5!important}.highlight .cm{color:#65737e!important}.highlight .cp{color:#65737e!important}.highlight .c1{color:#65737e!important}.highlight .cs{color:#65737e!important}.highlight .gd{color:#bf616a!important}.highlight .ge{font-style:italic!important}.highlight .gh{color:#eff1f5!important;font-weight:700!important}.highlight .gi{color:#a3be8c!important}.highlight .gp{color:#65737e!important;font-weight:700!important}.highlight .gs{font-weight:700!important}.highlight .gu{color:#96b5b4!important;font-weight:700!important}.highlight .kc{color:#b48ead!important}.highlight .kd{color:#b48ead!important}.highlight .kn{color:#96b5b4!important}.highlight .kp{color:#b48ead!important}.highlight .kr{color:#b48ead!important}.highlight .kt{color:#ebcb8b!important}.highlight .ld{color:#a3be8c!important}.highlight .m{color:#d08770!important}.highlight .s{color:#a3be8c!important}.highlight .na{color:#8fa1b3!important}.highlight .nb{color:#eff1f5!important}.highlight .nc{color:#ebcb8b!important}.highlight .no{color:#bf616a!important}.highlight .nd{color:#96b5b4!important}.highlight .ni{color:#eff1f5!important}.highlight .ne{color:#bf616a!important}.highlight .nf{color:#8fa1b3!important}.highlight .nl{color:#eff1f5!important}.highlight .nn{color:#ebcb8b!important}.highlight .nx{color:#8fa1b3!important}.highlight .py{color:#eff1f5!important}.highlight .nt{color:#96b5b4!important}.highlight .nv{color:#bf616a!important}.highlight .ow{color:#96b5b4!important}.highlight .w{color:#eff1f5!important}.highlight .mf{color:#d08770!important}.highlight .mh{color:#d08770!important}.highlight .mi{color:#d08770!important}.highlight .mo{color:#d08770!important}.highlight .sb{color:#a3be8c!important}.highlight .sc{color:#eff1f5!important}.highlight .sd{color:#65737e!important}.highlight .s2{color:#a3be8c!important}.highlight .se{color:#d08770!important}.highlight .sh{color:#a3be8c!important}.highlight .si{color:#d08770!important}.highlight .sx{color:#a3be8c!important}.highlight .sr{color:#a3be8c!important}.highlight .s1{color:#a3be8c!important}.highlight .ss{color:#a3be8c!important}.highlight .bp{color:#eff1f5!important}.highlight .vc{color:#bf616a!important}.highlight .vg{color:#bf616a!important}.highlight .vi{color:#bf616a!important}.highlight .il{color:#d08770!important} EOT;
Dracula theme "Dracula theme" <<<EOT
/*! Jupyter: Dracula theme *\/#notebook .highlight table{background:#282a36!important;color:#f8f8f2!important}.highlight .hll{background-color:#ffc!important}.highlight .c{color:#6272a4!important}.highlight .err{color:#f8f8f2!important}.highlight .g{color:#f8f8f2!important}.highlight .k{color:#ff79c6!important}.highlight .l{color:#f8f8f2!important}.highlight .h,.highlight .n{color:#f8f8f2!important}.highlight .o{color:#f8f8f2!important}.highlight .x{color:#f8f8f2!important}.highlight .p{color:#f8f8f2!important}.highlight .cm{color:#6272a4!important}.highlight .cp{color:#ff79c6!important}.highlight .c1{color:#6272a4!important}.highlight .cs{color:#6272a4!important}.highlight .gd{color:#8b080b!important}.highlight .ge{color:#f8f8f2!important;text-decoration:underline!important}.highlight .gr{color:#f8f8f2!important}.highlight .gh{color:#f8f8f2!important;font-weight:700!important}.highlight .gi{color:#f8f8f2!important;font-weight:700!important;background-color:#468410!important}.highlight .go{color:#3b3a32!important;background-color:#32343f!important}.highlight .gp{color:#f8f8f2!important}.highlight .gs{color:#f8f8f2!important}.highlight .gu{color:#f8f8f2!important;font-weight:700!important}.highlight .gt{color:#f8f8f0!important;background-color:#ff79c6!important}.highlight .kc{color:#ff79c6!important}.highlight .kd{color:#ff79c6!important}.highlight .kn{color:#ff79c6!important}.highlight .kp{color:#ff79c6!important}.highlight .kr{color:#ff79c6!important}.highlight .kt{color:#f8f8f2!important}.highlight .ld{color:#f8f8f2!important}.highlight .m{color:#bd93f9!important}.highlight .s{color:#f1fa8c!important}.highlight .na{color:#50fa7b!important}.highlight .nb{color:#f8f8f2!important}.highlight .nc{color:#f8f8f2!important}.highlight .no{color:#f8f8f2!important}.highlight .nd{color:#f8f8f2!important}.highlight .ni{color:#f8f8f2!important}.highlight .ne{color:#f8f8f2!important}.highlight .nf{color:#50fa7b!important}.highlight .nl{color:#f1fa8c!important}.highlight .nn{color:#f8f8f2!important}.highlight .nx{color:#f8f8f2!important}.highlight .py{color:#f8f8f2!important}.highlight .nt{color:#ff79c6!important}.highlight .nv{color:#8be9fd!important;font-style:italic!important}.highlight .ow{color:#ff79c6!important}.highlight .w{color:#f8f8f2!important}.highlight .mf{color:#bd93f9!important}.highlight .mh{color:#bd93f9!important}.highlight .mi{color:#bd93f9!important}.highlight .mo{color:#bd93f9!important}.highlight .sb{color:#f1fa8c!important}.highlight .sc{color:#f1fa8c!important}.highlight .sd{color:#f1fa8c!important}.highlight .s2{color:#f1fa8c!important}.highlight .se{color:#f1fa8c!important}.highlight .sh{color:#f1fa8c!important}.highlight .si{color:#f1fa8c!important}.highlight .sx{color:#f1fa8c!important}.highlight .sr{color:#f1fa8c!important}.highlight .s1{color:#f1fa8c!important}.highlight .ss{color:#f1fa8c!important}.highlight .bp{color:#f8f8f2!important}.highlight .vc{color:#8be9fd!important;font-style:italic!important}.highlight .vg{color:#8be9fd!important;font-style:italic!important}.highlight .vi{color:#8be9fd!important;font-style:italic!important}.highlight .il{color:#bd93f9!important} EOT;
Github Dark (Native mod) theme "Github Dark (Native mod) theme" <<<EOT
/*! Jupyter: Github Dark (Native mod) theme *\/#notebook .highlight table{background:#111!important;color:#d0d0d0!important}.highlight .hll{background-color:#404040!important}.highlight .c{color:#3677a9!important}.highlight .err{color:#a61717!important;background-color:#311!important}.highlight .g{color:#d0d0d0!important}.highlight .k{color:#ccc!important}.highlight .l{color:#d0d0d0!important}.highlight .h,.highlight .n{color:#ccc!important}.highlight .o{color:#777!important}.highlight .x{color:#d0d0d0!important}.highlight .p{color:#e9b96e!important}.highlight .cm{color:#3677a9!important}.highlight .cp{color:#d2691e!important}.highlight .c1{color:#3677a9!important}.highlight .cs{color:#e50808!important;background-color:#520000!important}.highlight .gd{color:#d22323!important}.highlight .ge{color:#d0d0d0!important}.highlight .gr{color:#d22323!important}.highlight .gh{color:#fff!important}.highlight .gi{color:#589819!important}.highlight .go{color:#ccc!important}.highlight .gp{color:#aaa!important}.highlight .gs{color:#d0d0d0!important}.highlight .gu{color:#fff!important}.highlight .gt{color:#d22323!important}.highlight .kc{color:#6ab825!important}.highlight .kd{color:#6ab825!important}.highlight .kn{color:#6ab825!important}.highlight .kp{color:#6ab825!important}.highlight .kr{color:#6ab825!important}.highlight .kt{color:#6ab825!important}.highlight .ld{color:#d0d0d0!important}.highlight .m{color:#cd2828!important}.highlight .s{color:#d2691e!important}.highlight .na{color:#bbb!important}.highlight .nb{color:#24909d!important}.highlight .nc{color:#447fcf!important}.highlight .no{color:#4ca!important}.highlight .nd{color:orange!important}.highlight .ni{color:#d0d0d0!important}.highlight .ne{color:#bbb!important}.highlight .nf{color:#098!important}.highlight .nl{color:#d0d0d0!important}.highlight .nn{color:#447fcf!important}.highlight .nx{color:#d0d0d0!important}.highlight .py{color:#d0d0d0!important}.highlight .nt{color:#6ab825!important}.highlight .nv{color:#4ca!important}.highlight .ow{color:#6ab825!important}.highlight .w{color:#666!important}.highlight .mf{color:#cd2828!important}.highlight .mh{color:#cd2828!important}.highlight .mi{color:#cd2828!important}.highlight .mo{color:#cd2828!important}.highlight .sb{color:#d2691e!important}.highlight .sc{color:#d2691e!important}.highlight .sd{color:#d2691e!important}.highlight .s2{color:#d2691e!important}.highlight .se{color:#d2691e!important}.highlight .sh{color:#d2691e!important}.highlight .si{color:#d2691e!important}.highlight .sx{color:orange!important}.highlight .sr{color:#cd2828!important}.highlight .s1{color:#d2691e!important}.highlight .ss{color:#d2691e!important}.highlight .bp{color:#24909d!important}.highlight .vc{color:#4ca!important}.highlight .vg{color:#4ca!important}.highlight .vi{color:#4ca!important}.highlight .il{color:#cd2828!important} EOT;
Idle Fingers "Idle Fingers" <<<EOT
/*! Jupyter: Idle Fingers *\/#notebook .highlight table{background:#323232!important}.highlight .hll{background:#ffc!important}.highlight{background:#323232!important;color:#fff!important}.highlight .c{color:#bc9458!important;font-style:italic!important}.highlight .err{color:#fff!important}.highlight .g{color:#fff!important}.highlight .k{color:#cc7833!important}.highlight .l{color:#fff!important}.highlight .h,.highlight .n{color:#fff!important}.highlight .o{color:#fff!important}.highlight .x{color:#fff!important}.highlight .p{color:#fff!important}.highlight .cm{color:#bc9458!important;font-style:italic!important}.highlight .cp{color:#cc7833!important}.highlight .c1{color:#bc9458!important;font-style:italic!important}.highlight .cs{color:#bc9458!important;font-style:italic!important}.highlight .gd{color:#fff!important}.highlight .ge{color:#fff!important;text-decoration:underline!important}.highlight .gr{color:#fff!important}.highlight .gh{color:#fff!important;font-weight:700!important}.highlight .gi{color:#fff!important}.highlight .go{color:#404040!important;background:#353637!important}.highlight .gp{color:#fff!important}.highlight .gs{color:#fff!important}.highlight .gu{color:#fff!important;font-weight:700!important}.highlight .gt{color:#fff!important;background:red!important}.highlight .kc{color:#cc7833!important}.highlight .kd{color:#cc7833!important}.highlight .kn{color:#cc7833!important}.highlight .kp{color:#cc7833!important}.highlight .kr{color:#cc7833!important}.highlight .kt{color:#ffc66d!important}.highlight .ld{color:#fff!important}.highlight .m{color:#6c99bb!important}.highlight .s{color:#a5c261!important}.highlight .na{color:#ffc66d!important}.highlight .nb{color:#fff!important}.highlight .nc{color:#fff!important}.highlight .no{color:#6c99bb!important}.highlight .nd{color:#fff!important}.highlight .ni{color:#fff!important}.highlight .ne{color:#fff!important}.highlight .nf{color:#ffc66d!important}.highlight .nl{color:#a5c261!important}.highlight .nn{color:#fff!important}.highlight .nx{color:#fff!important}.highlight .py{color:#fff!important}.highlight .nt{color:#cc7833!important}.highlight .nv{color:#fff!important}.highlight .ow{color:#cc7833!important}.highlight .w{color:#fff!important}.highlight .mf{color:#6c99bb!important}.highlight .mh{color:#6c99bb!important}.highlight .mi{color:#6c99bb!important}.highlight .mo{color:#6c99bb!important}.highlight .sb{color:#a5c261!important}.highlight .sc{color:#a5c261!important}.highlight .sd{color:#a5c261!important}.highlight .s2{color:#a5c261!important}.highlight .se{color:#a5c261!important}.highlight .sh{color:#a5c261!important}.highlight .si{color:#a5c261!important}.highlight .sx{color:#a5c261!important}.highlight .sr{color:#a5c261!important}.highlight .s1{color:#a5c261!important}.highlight .ss{color:#a5c261!important}.highlight .bp{color:#fff!important}.highlight .vc{color:#fff!important}.highlight .vg{color:#fff!important}.highlight .vi{color:#fff!important}.highlight .il{color:#6c99bb!important} EOT;
Monokai - Spacegray Eighties "Monokai - Spacegray Eighties" <<<EOT
/*! Jupyter: Monokai - Spacegray Eighties *\/#notebook .highlight table{background-color:#1c1c1c!important;color:#f8f8f8!important}.highlight .hll{background-color:#2c2c2c!important}.highlight .c{color:grey!important}.highlight .err{color:#960050!important;background-color:#1e0010!important}.highlight .k{color:#66d9ef!important;font-style:italic!important}.highlight .l{color:#ae81ff!important}.highlight .h,.highlight .n{color:#f8f8f8!important}.highlight .o{color:#f92672!important}.highlight .p{color:#f8f8f8!important}.highlight .cm{color:grey!important}.highlight .cp{color:grey!important}.highlight .c1{color:grey!important}.highlight .cs{color:grey!important}.highlight .kc{color:#ae81ff!important}.highlight .kd{color:#66d9ef!important;font-style:italic!important}.highlight .kn{color:#f92672!important}.highlight .kp{color:#ae81ff!important}.highlight .kr{color:#ae81ff!important}.highlight .kt{color:#66d9ef!important;font-style:italic!important}.highlight .ld{color:#e6db74!important}.highlight .m{color:#ae81ff!important}.highlight .s{color:#e6db74!important}.highlight .na{color:#a6e22e!important}.highlight .nb{color:#f8f8f8!important}.highlight .nc{color:#a6e22e!important;font-style:italic!important}.highlight .no{color:#ae81ff!important}.highlight .nd{color:#a6e22e!important}.highlight .ni{color:#f92672!important}.highlight .ne{color:#a6e22e!important}.highlight .nf{color:#a6e22e!important}.highlight .nl{color:#f8f8f8!important}.highlight .nn{color:#f8f8f8!important}.highlight .nx{color:#f8f8f8!important}.highlight .py{color:#f92672!important}.highlight .nt{color:#f92672!important}.highlight .nv{color:#f92672!important}.highlight .ow{color:#f92672!important}.highlight .w{color:#f8f8f8!important}.highlight .mf{color:#ae81ff!important}.highlight .mh{color:#ae81ff!important}.highlight .mi{color:#ae81ff!important}.highlight .mo{color:#ae81ff!important}.highlight .sb{color:#e6db74!important}.highlight .sc{color:#e6db74!important}.highlight .sd{color:#e6db74!important}.highlight .s2{color:#e6db74!important}.highlight .se{color:#ae81ff!important}.highlight .sh{color:#e6db74!important}.highlight .si{color:#e6db74!important}.highlight .sx{color:#e6db74!important}.highlight .sr{color:#e6db74!important}.highlight .s1{color:#e6db74!important}.highlight .ss{color:#e6db74!important}.highlight .bp{color:#f92672!important}.highlight .vc{color:#f92672!important}.highlight .vg{color:#f92672!important}.highlight .vi{color:#f92672!important}.highlight .il{color:#ae81ff!important} EOT;
Monokai "Monokai" <<<EOT
/*! Jupyter: Monokai *\/#notebook .highlight table{background:#272822!important;color:#f8f8f2!important}.highlight .hll{background-color:#49483e!important}.highlight .c{color:#75715e!important}.highlight .err{color:#960050!important;background-color:#1e0010!important}.highlight .k{color:#66d9ef!important}.highlight .l{color:#ae81ff!important}.highlight .h,.highlight .n{color:#f8f8f2!important}.highlight .o{color:#f92672!important}.highlight .p{color:#f8f8f2!important}.highlight .cm{color:#75715e!important}.highlight .cp{color:#75715e!important}.highlight .c1{color:#75715e!important}.highlight .cs{color:#75715e!important}.highlight .kc{color:#66d9ef!important}.highlight .kd{color:#66d9ef!important}.highlight .kn{color:#f92672!important}.highlight .kp{color:#66d9ef!important}.highlight .kr{color:#66d9ef!important}.highlight .kt{color:#66d9ef!important}.highlight .ld{color:#e6db74!important}.highlight .m{color:#ae81ff!important}.highlight .s{color:#e6db74!important}.highlight .na{color:#a6e22e!important}.highlight .nb{color:#f8f8f2!important}.highlight .nc{color:#a6e22e!important}.highlight .no{color:#66d9ef!important}.highlight .nd{color:#a6e22e!important}.highlight .ni{color:#f8f8f2!important}.highlight .ne{color:#a6e22e!important}.highlight .nf{color:#a6e22e!important}.highlight .nl{color:#f8f8f2!important}.highlight .nn{color:#f8f8f2!important}.highlight .nx{color:#a6e22e!important}.highlight .py{color:#f8f8f2!important}.highlight .nt{color:#f92672!important}.highlight .nv{color:#f8f8f2!important}.highlight .ow{color:#f92672!important}.highlight .w{color:#f8f8f2!important}.highlight .mf{color:#ae81ff!important}.highlight .mh{color:#ae81ff!important}.highlight .mi{color:#ae81ff!important}.highlight .mo{color:#ae81ff!important}.highlight .sb{color:#e6db74!important}.highlight .sc{color:#e6db74!important}.highlight .sd{color:#e6db74!important}.highlight .s2{color:#e6db74!important}.highlight .se{color:#ae81ff!important}.highlight .sh{color:#e6db74!important}.highlight .si{color:#e6db74!important}.highlight .sx{color:#e6db74!important}.highlight .sr{color:#e6db74!important}.highlight .s1{color:#e6db74!important}.highlight .ss{color:#e6db74!important}.highlight .bp{color:#f8f8f2!important}.highlight .vc{color:#f8f8f2!important}.highlight .vg{color:#f8f8f2!important}.highlight .vi{color:#f8f8f2!important}.highlight .il{color:#ae81ff!important} EOT;
Obsidian "Obsidian" <<<EOT
/*! Jupyter: Obsidian *\/#notebook .highlight table{background-color:#293134!important;color:#e0e2e4!important}.highlight .c{color:#66747b!important}.highlight .err{color:#e0e2e4!important;background-color:#da4236!important}.highlight .g{color:#e0e2e4!important}.highlight .k{color:#93c763!important}.highlight .l{color:#e0e2e4!important}.highlight .h,.highlight .n{color:#e0e2e4!important}.highlight .o{color:#93c763!important}.highlight .x{color:#96989a!important}.highlight .p{color:#e0e2e4!important}.highlight .cm{color:#66747b!important}.highlight .cp{color:#93c763!important}.highlight .c1{color:#66747b!important}.highlight .cs{color:#93c763!important}.highlight .gd{color:#ec7600!important}.highlight .ge{color:#e0e2e4!important;font-style:italic!important}.highlight .gr{color:#da4236!important}.highlight .gh{color:#66747b!important}.highlight .gi{color:#93c763!important}.highlight .go{color:#e0e2e4!important}.highlight .gp{color:#e0e2e4!important}.highlight .gs{color:#e0e2e4!important;font-weight:700!important}.highlight .gu{color:#66747b!important}.highlight .gt{color:#e0e2e4!important}.highlight .kc{color:#96989a!important}.highlight .kd{color:#678cb1!important}.highlight .kn{color:#93c763!important}.highlight .kp{color:#93c763!important}.highlight .kr{color:#678cb1!important}.highlight .kt{color:#da4236!important}.highlight .ld{color:#e0e2e4!important}.highlight .m{color:#ec7600!important}.highlight .s{color:#ec7600!important}.highlight .na{color:#e0e2e4!important}.highlight .nb{color:#93c763!important}.highlight .nc{color:#678cb1!important}.highlight .no{color:#96989a!important}.highlight .nd{color:#678cb1!important}.highlight .ni{color:#96989a!important}.highlight .ne{color:#96989a!important}.highlight .nf{color:#678cb1!important}.highlight .nl{color:#e0e2e4!important}.highlight .nn{color:#e0e2e4!important}.highlight .nx{color:#e0e2e4!important}.highlight .py{color:#e0e2e4!important}.highlight .nt{color:#678cb1!important}.highlight .nv{color:#678cb1!important}.highlight .ow{color:#93c763!important}.highlight .w{color:#e0e2e4!important}.highlight .mf{color:#ec7600!important}.highlight .mh{color:#ec7600!important}.highlight .mi{color:#ec7600!important}.highlight .mo{color:#ec7600!important}.highlight .sb{color:#66747b!important}.highlight .sc{color:#ec7600!important}.highlight .sd{color:#e0e2e4!important}.highlight .s2{color:#ec7600!important}.highlight .se{color:#96989a!important}.highlight .sh{color:#e0e2e4!important}.highlight .si{color:#ec7600!important}.highlight .sx{color:#ec7600!important}.highlight .sr{color:#d39745!important}.highlight .s1{color:#ec7600!important}.highlight .ss{color:#ec7600!important}.highlight .bp{color:#678cb1!important}.highlight .vc{color:#678cb1!important}.highlight .vg{color:#678cb1!important}.highlight .vi{color:#678cb1!important}.highlight .il{color:#ec7600!important} EOT;
Pastel on Dark "Pastel on Dark" <<<EOT
/*! Jupyter: Pastel on Dark *\/#notebook .highlight table{background:#2b2b2b!important}.highlight .hll{background:#ffc!important}.highlight{background:#2b2b2b!important;color:#e6e1dc!important}.highlight .c{color:#555!important}.highlight .err{color:#e6e1dc!important}.highlight .g{color:#e6e1dc!important}.highlight .k{color:#4d74d0!important}.highlight .l{color:#e6e1dc!important}.highlight .h,.highlight .n{color:#e6e1dc!important}.highlight .o{color:#e6e1dc!important}.highlight .x{color:#e6e1dc!important}.highlight .p{color:#e6e1dc!important}.highlight .cm{color:#555!important}.highlight .cp{color:#e6e1dc!important}.highlight .c1{color:#555!important}.highlight .cs{color:#555!important}.highlight .gd{color:#e6e1dc!important;background:#600!important}.highlight .ge{color:#e6e1dc!important}.highlight .gr{color:#ffc66d!important;background:#900!important}.highlight .gh{color:#fff!important}.highlight .gi{color:#e6e1dc!important;background:#519f50!important}.highlight .go{color:#e6e1dc!important}.highlight .gp{color:#e6e1dc!important}.highlight .gs{color:#e6e1dc!important}.highlight .gu{color:#fff!important}.highlight .gt{color:#e6e1dc!important}.highlight .kc{color:#4d74d0!important}.highlight .kd{color:#4d74d0!important}.highlight .kn{color:#4d74d0!important}.highlight .kp{color:#4d74d0!important}.highlight .kr{color:#4d74d0!important}.highlight .kt{color:#c1c144!important}.highlight .ld{color:#e6e1dc!important}.highlight .m{color:#a5c261!important}.highlight .s{color:#ad9361!important}.highlight .na{color:#6782d3!important}.highlight .nb{color:#e6e1dc!important}.highlight .nc{color:#e6e1dc!important}.highlight .no{color:#a1a1ff!important}.highlight .nd{color:#e6e1dc!important}.highlight .ni{color:#47b8d6!important}.highlight .ne{color:#e6e1dc!important}.highlight .nf{color:#6782d3!important}.highlight .nl{color:#e6e1dc!important}.highlight .nn{color:#e6e1dc!important}.highlight .nx{color:#e6e1dc!important}.highlight .py{color:#e6e1dc!important}.highlight .nt{color:#4d74d0!important}.highlight .nv{color:#c1c144!important}.highlight .ow{color:#e6e1dc!important}.highlight .w{color:#e6e1dc!important}.highlight .mf{color:#a5c261!important}.highlight .mh{color:#a5c261!important}.highlight .mi{color:#a5c261!important}.highlight .mo{color:#a5c261!important}.highlight .sb{color:#ad9361!important}.highlight .sc{color:#ad9361!important}.highlight .sd{color:#ad9361!important}.highlight .s2{color:#ad9361!important}.highlight .se{color:#ad9361!important}.highlight .sh{color:#ad9361!important}.highlight .si{color:#ad9361!important}.highlight .sx{color:#ad9361!important}.highlight .sr{color:#ad9361!important}.highlight .s1{color:#ad9361!important}.highlight .ss{color:#ad9361!important}.highlight .bp{color:#e6e1dc!important}.highlight .vc{color:#c1c144!important}.highlight .vg{color:#c1c144!important}.highlight .vi{color:#c1c144!important}.highlight .il{color:#a5c261!important} EOT;
Solariazed Dark "Solariazed Dark" <<<EOT
/*! Jupyter: Solariazed Dark *\/#notebook .highlight table{background-color:#002b36!important;color:#839496!important}.highlight .c{color:#586e75!important}.highlight .err{color:#dc322f!important;background-color:#fdf6e3!important}.highlight .g{color:#839496!important}.highlight .k{color:#859900!important}.highlight .l{color:#839496!important}.highlight .h,.highlight .n{color:#839496!important}.highlight .o{color:#859900!important}.highlight .x{color:#cb4b16!important}.highlight .p{color:#839496!important}.highlight .cm{color:#586e75!important}.highlight .cp{color:#859900!important}.highlight .c1{color:#586e75!important}.highlight .cs{color:#859900!important}.highlight .gd{color:#2aa198!important}.highlight .ge{color:#839496!important;font-style:italic!important}.highlight .gr{color:#dc322f!important}.highlight .gh{color:#cb4b16!important}.highlight .gi{color:#859900!important}.highlight .go{color:#839496!important}.highlight .gp{color:#839496!important}.highlight .gs{color:#839496!important;font-weight:700!important}.highlight .gu{color:#cb4b16!important}.highlight .gt{color:#839496!important}.highlight .kc{color:#cb4b16!important}.highlight .kd{color:#268bd2!important}.highlight .kn{color:#859900!important}.highlight .kp{color:#859900!important}.highlight .kr{color:#268bd2!important}.highlight .kt{color:#dc322f!important}.highlight .ld{color:#839496!important}.highlight .m{color:#2aa198!important}.highlight .s{color:#2aa198!important}.highlight .na{color:#839496!important}.highlight .nb{color:#b58900!important}.highlight .nc{color:#268bd2!important}.highlight .no{color:#cb4b16!important}.highlight .nd{color:#268bd2!important}.highlight .ni{color:#cb4b16!important}.highlight .ne{color:#cb4b16!important}.highlight .nf{color:#268bd2!important}.highlight .nl{color:#839496!important}.highlight .nn{color:#839496!important}.highlight .nx{color:#839496!important}.highlight .py{color:#839496!important}.highlight .nt{color:#268bd2!important}.highlight .nv{color:#268bd2!important}.highlight .ow{color:#859900!important}.highlight .w{color:#839496!important}.highlight .mf{color:#2aa198!important}.highlight .mh{color:#2aa198!important}.highlight .mi{color:#2aa198!important}.highlight .mo{color:#2aa198!important}.highlight .sb{color:#586e75!important}.highlight .sc{color:#2aa198!important}.highlight .sd{color:#839496!important}.highlight .s2{color:#2aa198!important}.highlight .se{color:#cb4b16!important}.highlight .sh{color:#839496!important}.highlight .si{color:#2aa198!important}.highlight .sx{color:#2aa198!important}.highlight .sr{color:#dc322f!important}.highlight .s1{color:#2aa198!important}.highlight .ss{color:#2aa198!important}.highlight .bp{color:#268bd2!important}.highlight .vc{color:#268bd2!important}.highlight .vg{color:#268bd2!important}.highlight .vi{color:#268bd2!important}.highlight .il{color:#2aa198!important} EOT;
Tomorrow Night Blue "Tomorrow Night Blue" <<<EOT
/*! Jupyter: Tomorrow Night Blue *\/#notebook .highlight table{background:#002451!important;color:#fff!important}.highlight .hll{background-color:#003f8e!important}.highlight .c{color:#7285b7!important}.highlight .err{color:#ff9da4!important}.highlight .k{color:#ebbbff!important}.highlight .l{color:#ffc58f!important}.highlight .h,.highlight .n{color:#fff!important}.highlight .o{color:#9ff!important}.highlight .p{color:#fff!important}.highlight .cm{color:#7285b7!important}.highlight .cp{color:#7285b7!important}.highlight .c1{color:#7285b7!important}.highlight .cs{color:#7285b7!important}.highlight .gd{color:#ff9da4!important}.highlight .ge{font-style:italic!important}.highlight .gh{color:#fff!important;font-weight:700!important}.highlight .gi{color:#d1f1a9!important}.highlight .gp{color:#7285b7!important;font-weight:700!important}.highlight .gs{font-weight:700!important}.highlight .gu{color:#9ff!important;font-weight:700!important}.highlight .kc{color:#ebbbff!important}.highlight .kd{color:#ebbbff!important}.highlight .kn{color:#9ff!important}.highlight .kp{color:#ebbbff!important}.highlight .kr{color:#ebbbff!important}.highlight .kt{color:#ffeead!important}.highlight .ld{color:#d1f1a9!important}.highlight .m{color:#ffc58f!important}.highlight .s{color:#d1f1a9!important}.highlight .na{color:#bbdaff!important}.highlight .nb{color:#fff!important}.highlight .nc{color:#ffeead!important}.highlight .no{color:#ff9da4!important}.highlight .nd{color:#9ff!important}.highlight .ni{color:#fff!important}.highlight .ne{color:#ff9da4!important}.highlight .nf{color:#bbdaff!important}.highlight .nl{color:#fff!important}.highlight .nn{color:#ffeead!important}.highlight .nx{color:#bbdaff!important}.highlight .py{color:#fff!important}.highlight .nt{color:#9ff!important}.highlight .nv{color:#ff9da4!important}.highlight .ow{color:#9ff!important}.highlight .w{color:#fff!important}.highlight .mf{color:#ffc58f!important}.highlight .mh{color:#ffc58f!important}.highlight .mi{color:#ffc58f!important}.highlight .mo{color:#ffc58f!important}.highlight .sb{color:#d1f1a9!important}.highlight .sc{color:#fff!important}.highlight .sd{color:#7285b7!important}.highlight .s2{color:#d1f1a9!important}.highlight .se{color:#ffc58f!important}.highlight .sh{color:#d1f1a9!important}.highlight .si{color:#ffc58f!important}.highlight .sx{color:#d1f1a9!important}.highlight .sr{color:#d1f1a9!important}.highlight .s1{color:#d1f1a9!important}.highlight .ss{color:#d1f1a9!important}.highlight .bp{color:#fff!important}.highlight .vc{color:#ff9da4!important}.highlight .vg{color:#ff9da4!important}.highlight .vi{color:#ff9da4!important}.highlight .il{color:#ffc58f!important} EOT;
Tomorrow Night Bright "Tomorrow Night Bright" <<<EOT
/*! Jupyter: Tomorrow Night Bright *\/#notebook .highlight table{background:#000!important;color:#eaeaea!important}.highlight .hll{background-color:#424242!important}.highlight .c{color:#969896!important}.highlight .err{color:#d54e53!important}.highlight .k{color:#c397d8!important}.highlight .l{color:#e78c45!important}.highlight .h,.highlight .n{color:#eaeaea!important}.highlight .o{color:#70c0b1!important}.highlight .p{color:#eaeaea!important}.highlight .cm{color:#969896!important}.highlight .cp{color:#969896!important}.highlight .c1{color:#969896!important}.highlight .cs{color:#969896!important}.highlight .gd{color:#d54e53!important}.highlight .ge{font-style:italic!important}.highlight .gh{color:#eaeaea!important;font-weight:700!important}.highlight .gi{color:#b9ca4a!important}.highlight .gp{color:#969896!important;font-weight:700!important}.highlight .gs{font-weight:700!important}.highlight .gu{color:#70c0b1!important;font-weight:700!important}.highlight .kc{color:#c397d8!important}.highlight .kd{color:#c397d8!important}.highlight .kn{color:#70c0b1!important}.highlight .kp{color:#c397d8!important}.highlight .kr{color:#c397d8!important}.highlight .kt{color:#e7c547!important}.highlight .ld{color:#b9ca4a!important}.highlight .m{color:#e78c45!important}.highlight .s{color:#b9ca4a!important}.highlight .na{color:#7aa6da!important}.highlight .nb{color:#eaeaea!important}.highlight .nc{color:#e7c547!important}.highlight .no{color:#d54e53!important}.highlight .nd{color:#70c0b1!important}.highlight .ni{color:#eaeaea!important}.highlight .ne{color:#d54e53!important}.highlight .nf{color:#7aa6da!important}.highlight .nl{color:#eaeaea!important}.highlight .nn{color:#e7c547!important}.highlight .nx{color:#7aa6da!important}.highlight .py{color:#eaeaea!important}.highlight .nt{color:#70c0b1!important}.highlight .nv{color:#d54e53!important}.highlight .ow{color:#70c0b1!important}.highlight .w{color:#eaeaea!important}.highlight .mf{color:#e78c45!important}.highlight .mh{color:#e78c45!important}.highlight .mi{color:#e78c45!important}.highlight .mo{color:#e78c45!important}.highlight .sb{color:#b9ca4a!important}.highlight .sc{color:#eaeaea!important}.highlight .sd{color:#969896!important}.highlight .s2{color:#b9ca4a!important}.highlight .se{color:#e78c45!important}.highlight .sh{color:#b9ca4a!important}.highlight .si{color:#e78c45!important}.highlight .sx{color:#b9ca4a!important}.highlight .sr{color:#b9ca4a!important}.highlight .s1{color:#b9ca4a!important}.highlight .ss{color:#b9ca4a!important}.highlight .bp{color:#eaeaea!important}.highlight .vc{color:#d54e53!important}.highlight .vg{color:#d54e53!important}.highlight .vi{color:#d54e53!important}.highlight .il{color:#e78c45!important} EOT;
Tomorrow Night Eighties "Tomorrow Night Eighties" <<<EOT
/*! Jupyter: Tomorrow Night Eighties *\/#notebook .highlight table{background:#2d2d2d!important;color:#ccc!important}.highlight .hll{background-color:#515151!important}.highlight .c{color:#999!important}.highlight .err{color:#f2777a!important}.highlight .k{color:#c9c!important}.highlight .l{color:#f99157!important}.highlight .h,.highlight .n{color:#ccc!important}.highlight .o{color:#6cc!important}.highlight .p{color:#ccc!important}.highlight .cm{color:#999!important}.highlight .cp{color:#999!important}.highlight .c1{color:#999!important}.highlight .cs{color:#999!important}.highlight .gd{color:#f2777a!important}.highlight .ge{font-style:italic!important}.highlight .gh{color:#ccc!important;font-weight:700!important}.highlight .gi{color:#9c9!important}.highlight .gp{color:#999!important;font-weight:700!important}.highlight .gs{font-weight:700!important}.highlight .gu{color:#6cc!important;font-weight:700!important}.highlight .kc{color:#c9c!important}.highlight .kd{color:#c9c!important}.highlight .kn{color:#6cc!important}.highlight .kp{color:#c9c!important}.highlight .kr{color:#c9c!important}.highlight .kt{color:#fc6!important}.highlight .ld{color:#9c9!important}.highlight .m{color:#f99157!important}.highlight .s{color:#9c9!important}.highlight .na{color:#69c!important}.highlight .nb{color:#ccc!important}.highlight .nc{color:#fc6!important}.highlight .no{color:#f2777a!important}.highlight .nd{color:#6cc!important}.highlight .ni{color:#ccc!important}.highlight .ne{color:#f2777a!important}.highlight .nf{color:#69c!important}.highlight .nl{color:#ccc!important}.highlight .nn{color:#fc6!important}.highlight .nx{color:#69c!important}.highlight .py{color:#ccc!important}.highlight .nt{color:#6cc!important}.highlight .nv{color:#f2777a!important}.highlight .ow{color:#6cc!important}.highlight .w{color:#ccc!important}.highlight .mf{color:#f99157!important}.highlight .mh{color:#f99157!important}.highlight .mi{color:#f99157!important}.highlight .mo{color:#f99157!important}.highlight .sb{color:#9c9!important}.highlight .sc{color:#ccc!important}.highlight .sd{color:#999!important}.highlight .s2{color:#9c9!important}.highlight .se{color:#f99157!important}.highlight .sh{color:#9c9!important}.highlight .si{color:#f99157!important}.highlight .sx{color:#9c9!important}.highlight .sr{color:#9c9!important}.highlight .s1{color:#9c9!important}.highlight .ss{color:#9c9!important}.highlight .bp{color:#ccc!important}.highlight .vc{color:#f2777a!important}.highlight .vg{color:#f2777a!important}.highlight .vi{color:#f2777a!important}.highlight .il{color:#f99157!important} EOT;
Tomorrow Night "Tomorrow Night" <<<EOT
/*! Jupyter: Tomorrow Night *\/#notebook .highlight table{background:#1d1f21!important;color:#c5c8c6!important}.highlight .hll{background-color:#373b41!important}.highlight .c{color:#969896!important}.highlight .err{color:#c66!important}.highlight .k{color:#b294bb!important}.highlight .l{color:#de935f!important}.highlight .h,.highlight .n{color:#c5c8c6!important}.highlight .o{color:#8abeb7!important}.highlight .p{color:#c5c8c6!important}.highlight .cm{color:#969896!important}.highlight .cp{color:#969896!important}.highlight .c1{color:#969896!important}.highlight .cs{color:#969896!important}.highlight .gd{color:#c66!important}.highlight .ge{font-style:italic!important}.highlight .gh{color:#c5c8c6!important;font-weight:700!important}.highlight .gi{color:#b5bd68!important}.highlight .gp{color:#969896!important;font-weight:700!important}.highlight .gs{font-weight:700!important}.highlight .gu{color:#8abeb7!important;font-weight:700!important}.highlight .kc{color:#b294bb!important}.highlight .kd{color:#b294bb!important}.highlight .kn{color:#8abeb7!important}.highlight .kp{color:#b294bb!important}.highlight .kr{color:#b294bb!important}.highlight .kt{color:#f0c674!important}.highlight .ld{color:#b5bd68!important}.highlight .m{color:#de935f!important}.highlight .s{color:#b5bd68!important}.highlight .na{color:#81a2be!important}.highlight .nb{color:#c5c8c6!important}.highlight .nc{color:#f0c674!important}.highlight .no{color:#c66!important}.highlight .nd{color:#8abeb7!important}.highlight .ni{color:#c5c8c6!important}.highlight .ne{color:#c66!important}.highlight .nf{color:#81a2be!important}.highlight .nl{color:#c5c8c6!important}.highlight .nn{color:#f0c674!important}.highlight .nx{color:#81a2be!important}.highlight .py{color:#c5c8c6!important}.highlight .nt{color:#8abeb7!important}.highlight .nv{color:#c66!important}.highlight .ow{color:#8abeb7!important}.highlight .w{color:#c5c8c6!important}.highlight .mf{color:#de935f!important}.highlight .mh{color:#de935f!important}.highlight .mi{color:#de935f!important}.highlight .mo{color:#de935f!important}.highlight .sb{color:#b5bd68!important}.highlight .sc{color:#c5c8c6!important}.highlight .sd{color:#969896!important}.highlight .s2{color:#b5bd68!important}.highlight .se{color:#de935f!important}.highlight .sh{color:#b5bd68!important}.highlight .si{color:#de935f!important}.highlight .sx{color:#b5bd68!important}.highlight .sr{color:#b5bd68!important}.highlight .s1{color:#b5bd68!important}.highlight .ss{color:#b5bd68!important}.highlight .bp{color:#c5c8c6!important}.highlight .vc{color:#c66!important}.highlight .vg{color:#c66!important}.highlight .vi{color:#c66!important}.highlight .il{color:#de935f!important} EOT;
Twilight "Twilight" <<<EOT
/*! Jupyter: Twilight *\/#notebook .highlight table{background:#141414!important;color:#ccc!important}.highlight .hll{background-color:#ffc!important}.highlight .c{color:#5f5a60!important;font-style:italic!important}.highlight .err{border:#b22518!important}.highlight .k{color:#cda869!important}.highlight .cm{color:#5f5a60!important;font-style:italic!important}.highlight .cp{color:#5f5a60!important}.highlight .c1{color:#5f5a60!important;font-style:italic!important}.highlight .cs{color:#5f5a60!important;font-style:italic!important}.highlight .gd{background:#420e09!important}.highlight .ge{font-style:italic!important}.highlight .gr{background:#b22518!important}.highlight .gh{color:navy!important;font-weight:700!important}.highlight .gi{background:#253b22!important}.highlight .gp{font-weight:700!important}.highlight .gs{font-weight:700!important}.highlight .gu{color:purple!important;font-weight:700!important}.highlight .kd{color:#e9df8f!important}.highlight .kp{color:#9b703f!important}.highlight .na{color:#f9ee98!important}.highlight .nb{color:#cda869!important}.highlight .nc{color:#9b859d!important;font-weight:700!important}.highlight .no{color:#9b859d!important}.highlight .nd{color:#7587a6!important}.highlight .ni{color:#cf6a4c!important;font-weight:700!important}.highlight .nf{color:#9b703f!important;font-weight:700!important}.highlight .nn{color:#9b859d!important;font-weight:700!important}.highlight .nt{color:#cda869!important;font-weight:700!important}.highlight .nv{color:#7587a6!important}.highlight .ow{color:#a2f!important;font-weight:700!important}.highlight .w{color:#141414!important}.highlight .mf{color:#cf6a4c!important}.highlight .mh{color:#cf6a4c!important}.highlight .mi{color:#cf6a4c!important}.highlight .mo{color:#cf6a4c!important}.highlight .sb{color:#8f9d6a!important}.highlight .sc{color:#8f9d6a!important}.highlight .sd{color:#8f9d6a!important;font-style:italic!important}.highlight .s2{color:#8f9d6a!important}.highlight .se{color:#f9ee98!important;font-weight:700!important}.highlight .sh{color:#8f9d6a!important}.highlight .si{color:#daefa3!important;font-weight:700!important}.highlight .sx{color:#8f9d6a!important}.highlight .sr{color:#e9c062!important}.highlight .s1{color:#8f9d6a!important}.highlight .ss{color:#cf6a4c!important}.highlight .bp{color:#0aa!important}.highlight .vc{color:#7587a6!important}.highlight .vg{color:#7587a6!important}.highlight .vi{color:#7587a6!important}.highlight .il{color:#099!important} EOT;
}
@advanced text bg-choice "Background image [wrap in url()]" "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAAAAABURb1YAAAFnklEQVR4AWWXCY4cwXbE6h4JMhCvMPc/ov+3Ox9QsLCGpKlFHILd+UQ559AGDkBSFXWmomonqkL/XuUcIPUcONjHCJyE36KaqNiaRnVCG9TGpgIU9hIfohCBVGj24ammo04lU3Fy0NZDAyZi5AElHjgEGlRbG1WjraIt7TmADQkAaoEHsOXAAaeqat9RVTqjosyEH5W+DQCQt8BzIJMfXJI3e5tGRefSlRn3NrO3scnvNl26FN5RITGNfjm3GM/+FhQgnlQeImC+dEm8rzHVTNGL9EADVsTAIfGJBziRy7RlmcZU1IYpHIj+4JrWym8/XSwzompmFNVOFdTOAAfs61KZ6eXcp57fykQUOxNBmTesz2HpCnCg3UV/bA7VRpWGNqKtrYLTs0ilCjgxiZxjeLC5dDPBFn4Pn2ja6BRUL10DTgET4Focq8rn8casxV4E5tIlZvytqtfivCOKZrqc38G7egnkXecyPZdzubc57VtUnbfL+a0u3b1N3d9Mci7cKocHoh3xihLQ6fXUlgTOOfVkXSUFINoWHhqxE23RTmCqtoEJaITkIrUCkU9fnqpqm+40VSXS3CLaSzfGBb4rPuOSfN0ylLve6/jpcrbL2dTlnOdv5AamKjLvLN1XruMNS/cul/hx8twKpKYRaE2DOp8+c+lW7uVXVQ7Vx0x1G3HXjNocsHCac7NbWc6egwJVHu2kRTVNC2pqv2U4XNsv5/yWJlV9+NJ1C7xluInlcr7rK+Kg+qy7onQqgnbi7UHcS3qXjdw3bO5tumycYlVssMI5EXXpRnatPK362KodtVU60cm+eQT10sVLFwJYlVaf7UGSoi5dQF3DvnTX3UvXTPO8quKH7jsXhm/PxfKWZXqBM5sS33kmKtC31Q05fI095i5IPpyzRXqSy1Sr17p1F7NE8vMtnNbLpVVtk8c0OrfF0sKxHnIpYgHW4puMomTz8mgmrSjpvrxhX97l7LqLpl7bW9BH9/MNzF8XwRqL8/m7c30eFYV5VX3QTquK06XbLt16F4ks+8Z9m6gPtpcuk3OvibCekng4lzMHi9MoqZmKj9tdbQCbc7bcEA+oEJduRNNL1waf1tuI9MDBUK8t3k9uFz3rrqadO9Ln9TL/ezlwDvky3TW7ZmXfpc77TN0yhOXnP939LvVDV9s+tgLTm0TqYd1lea3PRFuVjLa562HdPbCfascGrvO3DMeIATVqVRO8vfHrbupdfo1dzlXUdkVLZsS1mLPG3rWcl+4B1l1537h0VXzU1tyLG7cCu+LSrSqo06hocy3WCcil65qHDbuEYzQN2HpT3jFt9LEFvHTP1nxbXOEkbhkKmd+6BTfVZ/I143z/Fyz6Za92o0I7I6gzfeYAHPwy/Rb43L9TLtMt8CtwW1xvQvbR1g9n7qJRNN1kdxcdH7cM58Szxq679MdLOhE72t6VNEpHHkzwRyjBcGth+dE99pIkVbWaEWmvnQ8Yl7Mp59zpRWXdNo6odrO754Zzvxf/010nP7onb1TR+bgbVPB9PcADJvH/043Kvk0UzLRxQ6UiaeTAcyxYl2lyrrvZv8v2wE7U1uVcST0821jJeIDKWuyxiqnuko7q3+zJYXJ46nV3D67EyL+lQ9F2qkr+3kUafQpwYE8T329p6y7OX1TF97fQv/c+l87zj7Hsgpig4qRLd9fMPs74rLGyCzRbhmVqpy7nqvPmTD1gvKe7b2U8u1QzmtuDuEtbgT3c8QBJveo6cueFkUwv59nVmfFw1jl4/unuOT9qERV76ers8n23z/c8/Xy7a4lwwLplmGusbRp33Up13+ZDN3KPxNVMhY62vUQyRTse6+cKHtZYjIfDh260Cjbb3Vy6R8H8SMBzqSwrsB1UTacoknlnOb8V4JD9Njfpwz/fHjpBUeevcAtcl65sqXPX9D87RUTLc/dfOgAAAABJRU5ErkJggg==)"
@advanced dropdown bg-options "Background image type" {
Tiled "Tiled" <<<EOT
background-repeat: repeat !important;
background-size: auto !important;
background-position: left top !important; EOT;
Fit window size "Fit window size" <<<EOT
background-repeat: no-repeat !important;
background-size: cover !important;
background-position: center top !important; EOT;
}
@advanced dropdown bg-attachment "Background image attachment" {
Scroll "Scroll" <<<EOT
scroll EOT;
Fixed "Fixed" <<<EOT
fixed EOT;
}
@advanced dropdown tab-size "Code Tab size" {
2 "2" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 2 !important;
-moz-tab-size: 2 !important;
} EOT;
3 "3" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 3 !important;
-moz-tab-size: 3 !important;
} EOT;
4 "4" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 4 !important;
-moz-tab-size: 4 !important;
} EOT;
5 "5" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 5 !important;
-moz-tab-size: 5 !important;
} EOT;
6 "6" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 6 !important;
-moz-tab-size: 6 !important;
} EOT;
7 "7" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 7 !important;
-moz-tab-size: 7 !important;
} EOT;
8 "8" <<<EOT
pre, .highlight, .diff-table, .tab-size {
tab-size: 8 !important;
-moz-tab-size: 8 !important;
} EOT;
}
@advanced text font-choice "Code Font" "Menlo"
@advanced dropdown code-wrap "Code Wrap" {
nowrap "No Wrap" <<<EOT
EOT;
wrap "Wrap" <<<EOT
/* GitHub Bug: Enable wrapping of long code lines *\/
body:not(.nowrap) .blob-code-inner,
body:not(.nowrap) .markdown-body pre > code,
body:not(.nowrap) .markdown-body .highlight > pre {
white-space: pre-wrap !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
display: block !important;
}
body:not(.nowrap) td.blob-code-inner {
display: table-cell !important;
} EOT;
}
==/UserStyle== */
@-moz-document regexp("^https?://((gist|guides|help|raw|status|developer)\\.)?github\\.com/((?!generated_pages/preview).)*$"), domain("githubusercontent.com"), domain("graphql-explorer.githubapp.com") {
/*! Github Dark v1.20.0 (2017-11-26) */
/* Repository: https://github.com/StylishThemes/GitHub-Dark */
/* Userstyle: http://userstyles.org/styles/37035 */
/* License: https://creativecommons.org/licenses/by-sa/4.0/ */
/* begin auto-generated rules - use tools/generate.js to generate them */
/* auto-generated rule for "background-color: #2cbe4e" */
.State--green, .block-diff-added, .block-diff-neutral,
.discussion-item-reopened .discussion-item-icon,
.discussion-item-review.is-approved.is-writer .discussion-item-icon,
.progress-bar .progress, .branch-action-state-clean .branch-action-icon,
.completeness-indicator-success {
background: #163 !important;
}
/* auto-generated rule for "background-color: #d1d5da" */
.block-diff-neutral {
background: #444 !important;
}
/* auto-generated rule for "background-color: #6f42c1" */
.bg-purple, .State--purple, .discussion-item-merged .discussion-item-icon,
.branch-action-state-merged .branch-action-icon, .btn-outline-purple:hover,
.btn-outline-purple:active, .btn-outline-purple.selected,
[open]>.btn-outline-purple {
background: #6e5494 !important;
}
/* auto-generated rule for "background-color: #cb2431" */
.btn-danger:hover, .State--red, .block-diff-deleted,
.text-red .block-diff-neutral, .discussion-item-closed .discussion-item-icon,
.discussion-item-review.is-rejected.is-writer .discussion-item-icon,
.completeness-indicator-error,
.saml-settings-form .test-status-indicator-error, .follow-list .flagged-banner {
background: #911 !important;
}
/* auto-generated rule for "background-color: #fff5b1" */
.bg-yellow-light, .selected-line.blob-num, .network .current-repository,
.diffbar-range-menu .is-last-in-range {
background-color: #261d08 !important;
}
/* auto-generated rule for "background-color: #fffbdd" */
.conflict-gutter-marker, .Box-row--yellow, .form-group.warn .warning,
.flash-warn, .warning, .boxed-group-warning, .blob-code-inner.highlighted,
.selected-line.blob-code, .RecentBranches,
.diffbar-range-menu .is-range-selected {
background-color: #261d08 !important;
}
/* auto-generated rule for "background-color: #f6f8fa" */
.Box-header, .Box-row.navigation-focus.sortable-ghost,
.Box-row--focus-gray.navigation-focus, .Box-row--hover-gray:hover,
.Box-row--gray, .menu-item:hover, .subnav-item:hover, .subnav-item:focus,
.bg-gray, .markdown-body table tr:nth-child(2n), .markdown-body .highlight pre,
.markdown-body pre, .table-list-header, .boxed-group>h3, .boxed-group .heading,
.commit-sha, .signed-commit-header,
.semantic-toc-symbol:not(.last-visible):after,
.select-menu-item+.semantic-toc-file:after, .copyable-terminal,
.timeline-comment-header, .facebox .facebox-staff-links,
.ajax-pagination-form .ajax-pagination-btn:hover,
.ajax-pagination-form .ajax-pagination-btn:focus,
.ajax-pagination-form.loading .ajax-pagination-btn, .protip code,
.render-notice, .select-menu-filters, .community-checklist .progress,
.layout-reorder-menu .dropdown-toggle:hover,
.layout-reorder-menu .dropdown-toggle.selected,
.layout-reorder-menu-list .is-hidden,
.layout-reorder-menu-list .is-hidden:hover,
.team-discussion-new-post .review-thread-reply-button:disabled,
.MarketplaceSideNav, .ScreenshotCarousel-navitem.selected, .sortable-ghost,
.profile-timeline.discussion-timeline .profile-timeline-month-heading:after,
.profile-timeline.discussion-timeline:before, .review-comment-contents:after,
.review-comment-loader:after, .review-comment.is-comment-editing:after,
.review-thread-reply, table.pricing-table {
background-color: #181818 !important;
}
/* auto-generated rule for "background-color: #fafbfc" */
.Box-row.navigation-focus.sortable-chosen, .btn-danger, .input-contrast,
.form-group .form-control, .drag-and-drop, .bg-gray-light, .blankslate,
.markdown-body kbd, .boxed-group-table th, .blob-expanded .blob-num,
.blob-expanded .blob-code, .file-diff-split .empty-cell,
.gh-header-edit .edit-issue-title, .discussion-item-review .file-header,
.linejump .linejump-input, kbd, .list-group-item.closed,
.repohead.experiment-repo-nav, .pagination .gap, .pagination .disabled,
.pagination .gap:hover, .pagination .disabled:hover, .steps li,
.listgroup-item.disabled, .billing-addon-items tr:nth-child(even),
.plan-choice, .blog-feedback, .merge-status-item,
.branch-action-body .merge-message, .branch-action-body .merge-branch-form,
.range-editor, .dnext-sidebar-menu .menu-item:hover, .dashboard-notice,
.newsletter-frequency-choice h3, .file-header, .orghead,
.manage-repo-access-not-active, .project-column, .new-label, .filter-bar,
.more-repos, .branch-infobar,
.access-token .credential-authorization-status-item,
.oauth-pending-deletion-list-item, .oauth-pending-deletion-list-item:hover,
.protected-branch-orgs-and-repo-admins, .team-listing .is-open.root-team,
table.capped-list tr:nth-child(even), .site-subheader-pricing,
.markdown-format kbd {
background-color: #181818 !important;
}
/* auto-generated rule for "background: #fff" */
.date-selector td, .jcrop-light .jcrop-vline, .jcrop-light .jcrop-hline,
.AvatarStack-body, .blankslate code, .markdown-body .csv-data .blob-num,
.autocomplete-results, .suggester, .boxed-group-inner,
.commit-group-title .octicon-git-commit, .full-commit .commit-meta,
.conversation-list-heading .inner,
.discussion-timeline.team-discussion-timeline .blankslate,
.gollum-editor-help-parent li a:hover, .gollum-editor-help-list li a:hover,
.gollum-editor-help-parent li a.selected,
.gollum-editor-help-list li a.selected, .gollum-editor-help-wrapper,
.pagination a, .pagination span, .pagination em,
.ajax-pagination-form .ajax-pagination-btn, ul.comparison-list,
.tint-box.transparent, .dashboard-notice .coupon,
.getting-started .list-group-item,
.oauth-org-access-details .oauth-org-item.on,
.oauth-org-access-details .oauth-org-item.revoked, .manage-repo-access-icon,
.card-filter-autocomplete-dropdown, .uploaded-files, .upload-progress,
table.files, .qr-code-table .white,
.wiki-wrapper .wiki-auxiliary-content-no-bg, .btn-outline-transparent:hover,
.btn-outline-transparent:active,
.gist-snippet-meta .gist-count-links>li>a:hover, .gist-quicksearch-results,
div#common-issues ul, .markdown-format img, .dropdown-menu {
background: #181818 !important;
}
/* auto-generated rule for "background-color: #fff" */
.jcrop-dark .jcrop-handle, body, .btn-primary .Counter, .btn-purple .Counter,
.btn-blue .Counter, .btn-outline, .btn-outline:hover .Counter,
.btn-outline:active .Counter, .btn-outline.selected .Counter,
[open]>.btn-outline .Counter, .btn-outline:disabled, .btn-outline.disabled,
.social-count, .form-control, .form-select, .input-contrast:focus,
.form-group .form-control:focus, .menu, .menu-item.selected,
.tabnav-tab.selected, .bg-white, .avatar-child, .avatar-stack .avatar,
.AvatarStack-body .avatar, .CircleBadge, .markdown-body table tr,
.markdown-body img, .bulk-actions-header.is-stuck, .Box--overlay,
.btn-invisible, .commit-tease-contributors, .commit-icon .octicon,
.gh-header-edit .edit-issue-title:focus, .timeline-comment,
.discussion-timeline-actions, .pagination-loader-container,
.timeline-progressive-disclosure-button, .dropdown-menu, .facebox-popup,
.pagehead-tabs-item.selected, .reponav-item.selected, .steps li.current,
.select-menu-modal, .select-menu-tabs a.selected,
.select-menu-tabs .select-menu-tab-nav.selected, .btn-blurple .Counter,
.integration-settings-callout, .auth-form-body, .cvv-hint-tooltip,
.credit-card.normal .signature, .billing-addon-items tr.total-row,
.billing-credit-card .javascript-disabled-overlay, .plan-choice.open,
.plan-choice.selected, .branch-action-body, .documentation-results a,
.select-menu-item, .logged-out.enter-coupon .header-logged-out,
.coupons .coupon-form-body, .octofication .broadcast-icon-mask,
.layout-reorder-menu .dropdown-toggle,
.layout-reorder-menu-list .dropdown-item:hover,
.dnext-sidebar-menu .menu-item.selected:hover,
.dashboards-overview-cards .blankslate, .file .image .border-wrap,
.news .alert .gravatar, .news .commits li img, .thread-subscription-status,
.orghead .edit-org:hover, .auto-search-group .spinner,
.migration-jumbotron-btn, .org-settings-updating, .manage-repo-access-group,
.manage-memberships-tabs-item.selected, .theme-picker, .theme-picker-spinner,
.page-preview, .project-columns, .project-card, .user-profile-sticky-bar:after,
.user-profile-nav, .pr-toolbar, .diffbar,
.review-thread-reply .inline-comment-form, .review-summary-form-wrapper,
.readme .markdown-body, .readme .plain,
.release-timeline-tags .expander-text:hover .expander-dots .expander-dot,
.release-label, .release-label.draft, .release-label.prerelease,
.is-failed .repo-file-upload-errors, .is-bad-file .repo-file-upload-errors,
.is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors,
.is-hidden-file .repo-file-upload-errors, .is-empty .repo-file-upload-errors,
.session-device.session-current, .setup-info-module, .orgs-help-item-octicon,
.org-sso .org-sso-panel, .tree-browser tr.navigation-focus td,
.btn-orange .Counter, .btn-outline-purple, .btn-outline-purple:hover .Counter,
.btn-outline-purple:active .Counter, .btn-outline-purple.selected .Counter,
[open]>.btn-outline-purple .Counter, .btn-outline-purple:disabled,
.btn-outline-purple.disabled, .btn-outline-orange,
.btn-outline-orange:hover .Counter, .btn-outline-orange:active .Counter,
.btn-outline-orange.selected .Counter, [open]>.btn-outline-orange .Counter,
.btn-outline-orange:disabled, .btn-outline-orange.disabled, .btn-outline-green,
.btn-outline-green:hover .Counter, .btn-outline-green:active .Counter,
.btn-outline-green.selected .Counter, [open]>.btn-outline-green .Counter,
.btn-outline-green:disabled, .btn-outline-green.disabled,
.btn-transparent:hover, .btn-transparent:active,
.site-subheader-sticky.is-stuck, a.button.classy.danger.disabled,
a.button.classy.danger:disabled,
a.button.classy.disabled:hover.danger.disabled,
a.button.classy.disabled:hover.danger:disabled,
a.button.classy:disabled:hover.danger.disabled,
a.button.classy:disabled:hover.danger:disabled,
a.danger.button.classy.disabled:disabled:hover,
a.danger.button.classy:disabled, a.danger.disabled.button.classy,
a.danger.disabled.button.classy:hover,
button.classy:disabled:hover.danger.disabled,
button.classy:disabled:hover.danger:disabled, button.danger.classy:disabled,
button.danger.classy:disabled:hover, button.danger.disabled.classy,
button.danger.disabled.classy:disabled:hover, input.classy.danger.disabled,
input.classy.danger:disabled, input.classy:disabled:hover.danger.disabled,
input.classy:disabled:hover.danger:disabled, input.danger.classy:disabled,
input.danger.disabled.classy, .btn, div.search-form .autocomplete-results a {
background: #181818 !important;
}
/* auto-generated rule for "border: 1px solid #e1e4e8" */
.subnav-item, .blankslate, .table-list-header, .list-group-item, .pagination a,
.pagination span, .pagination em, .ajax-pagination-form .ajax-pagination-btn,
.range-editor, .project-column, .project-card {
border-color: #343434 !important;
}
/* auto-generated rule for "border: 1px #e1e4e8 solid" */
.border, .code-list .file-box, .ScreenshotCarousel, .conflict-resolver.loading,
.review-thread, .review-comment.is-comment-editing,
.review-summary-form-wrapper, .org-sso .org-sso-panel, .data-table {
border-color: #343434 !important;
}
/* auto-generated rule for "border: 1px solid rgba(27,31,35,0.15)" */
.flash, .Label--outline, .boxed-group>h3, .boxed-group .heading,
.comment-form-error, .comment-form-stale, .full-commit, .dropdown-menu,
.select-menu-modal, .RecentBranches, .github-jobs-promotion p,
.project-updated-message, .shelf-dismiss .close-button {
border-color: rgba(225, 225, 225, .2) !important;
}
/* auto-generated rule for "border: 2px solid #fff" */
.discussion-item-icon, .pending-cards-status,
.release-timeline-tags .date:after, .release-timeline-tags .expander-dots {
border-color: #222 !important;
}
/* auto-generated rule for "border: solid #ddd" */
.documentation-results a, ul#bootcamp li a img, input, textarea,
.btn-text-field .btn, .btn-text-field .input, div.search-form input,
div.search-form .autocomplete-results a, .markdown-format table,
.markdown-format table td, .markdown-format table th, hr {
border-color: #484848 !important;
}
/* auto-generated rule for "border-color: #e1e4e8" */
.semantic-toc-symbol:not(.last-visible):after,
.select-menu-item+.semantic-toc-file:after, .tabnav-pr,
.tabnav-pr .tabnav-tab.selected, .gollum-editor-help-parent li a:hover,
.gollum-editor-help-list li a:hover, .pagination a:hover, .pagination a:focus,
.pagination span:hover, .pagination span:focus, .pagination em:hover,
.pagination em:focus, .progress-bar-inline .progress-bar, .plans-card-btn {
border-color: #343434 !important;
}
/* auto-generated rule for "border-color: #dfe2e5" */
.select-menu-tabs a.selected, .select-menu-tabs .select-menu-tab-nav.selected {
border-color: #484848 !important;
}
/* auto-generated rule for "border-bottom-color: #e36209" */
.UnderlineNav-item.selected, .repo-filterer .repo-filter.filter-selected {
border-bottom-color: #eee !important;
}
/* auto-generated rule for "border-bottom: 1px solid #e1e4e8" */
.Box-body, .menu-item, .menu-heading, .UnderlineNav, .table-list,
.boxed-group-list>li, .diff-table tr:not(:last-child) .line-comments,
.timeline-new-comment .previewable-comment-form .comment-body,
.new-discussion-timeline .previewable-comment-form .comment-body,
.discussion-item-review-comment, .facebox .facebox-staff-links,
.facebox-header, .pagehead, .select-menu-header, .select-menu-divider,
.merge-status-item, .file-header {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #dfe2e5" */
hr, .rule, .suggester li, .conversation-list-heading,
.gollum-editor .collapsed, .gollum-editor .expanded,
.gollum-editor-function-bar, .gollum-dialog-dialog h4,
.select-menu-text-filter:first-child:last-child, .select-menu-tabs,
.branch-summary:last-child, table.capped-list th {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #ddd" */
.blog-feedback-header, .early-access-thanks-wrapper, .migration-section,
.migration-footer, .org-migration-settings-section, .migrate-org-roles-header,
.manage-repo-access-title, .notification-center .overview,
.two-factor-settings-group, .setup-header, .setup-info-module h2,
div#common-issues h3, div#common-issues ul li, ul#categories li h5,
ul.search-results li, form#new_category, div#article-form-container .preview,
.markdown-format h3, div.content-header, .index-list h4 {
border-bottom: 1px solid #484848 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #d8d8d8" */
.wiki-rightbar .boxed-group.collapsed>h3 {
border-bottom: 1px solid #484848 !important;
}
/* auto-generated rule for "border-left: 1px solid #e1e4e8" */
.summary-stats li {
border-left: 1px solid #343434 !important;
}
/* auto-generated rule for "border-right: 1px solid #e1e4e8" */
.reaction-summary-item, .file-navigation .get-repo-btn:first-child {
border-right: 1px solid #343434 !important;
}
/* auto-generated rule for "border-top: 1px solid #e1e4e8" */
.Box-row, .Box-footer, .commits-list-item+.commits-list-item,
.diff-table .line-comments, .diff-table tr:not(:last-child) .line-comments,
.timeline-comment .comment+.comment, .facebox-footer,
.comment-reactions.has-reactions, .select-menu-divider,
.branch-action-body .merge-message, .branch-action-body .merge-branch-form,
.branch-action-item+.branch-action-item,
.branch-action-item+.mergeability-details,
.discussion-post .reply-comment:first-child, .last-review-thread,
.file-navigation .get-repo-btn, .user-list-item+.user-list-item {
border-top: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 0" */
.menu-item:last-child, .menu-heading:last-child, .tabnav-tab, .border-bottom-0,
.suggester li:last-child, .boxed-group>h3, .boxed-group .heading,
.boxed-group-list>li:last-of-type, .boxed-group-table tr:last-child td,
.commit-build-statuses .dropdown-menu .merge-status-list,
.gh-header.pull .gh-header-meta, .timeline-comment-header:only-child,
.discussion-item-review-comment:last-child, .dropdown-menu-ne:before,
.dropdown-menu-ne:after, .gollum-editor-title-field,
.prose-diff>.markdown-body .added, .prose-diff>.markdown-body ins+.added,
.prose-diff>.markdown-body ins,
.select-menu-list:last-child .select-menu-item:last-child,
.select-menu-item.last-visible, .intgrs-dir-intro,
.session-authentication .header-logged-out, .billing-addon-items td,
.billing-section:last-child, .merge-status-item:last-child,
.gh-header-new-pr .gh-header-meta, .branch-group-heading, .branch-summary,
.codesearch-results .repo-list-item, .file.open .file-header,
.delete-topic-button, .topic-tag-action .add-topic-button,
.topic-tag-action .remove-topic-button, .issue-keyword:hover,
.repository-lang-stats ol.repository-lang-stats-numbers li, .news .alert .body,
.member-row:last-child, .org-migration-settings-section:last-child,
.manage-repo-access-list-item:last-child,
.discussion-item-body .outdated-comment .file-header,
.repo-file-upload-target.is-progress-bar,
.repo-file-upload-target.is-uploading, .overall-summary-bottomless,
.access-token .credential-authorization-status-item:last-child,
.protected-branch-authorized-pushers-table .table-list, .setup-org,
.tree-browser tbody tr:last-child td, #user-content-toctitle h2,
.gist-sort-bar, .gist-quicksearch-results .select-menu-item:last-child {
border-bottom: 0 !important;
}
/* auto-generated rule for "border-left: 0" */
.social-count, .border-left-0, .flash-banner, .steps li:first-child,
.session-authentication .flash.is-signed-in,
.session-authentication .flash.is-signed-out, .golden-ticket-button:last-child,
.select-menu-item, .summary-stats li:first-child,
.url-box-clippy .zeroclipboard-button, .user-key-email-unverified,
.sso-modal.error .flash-error, .tree-browser {
border-left: 0 !important;
}
/* auto-generated rule for "border-right: 0" */
.border-right-0, .avatar-stack .avatar:last-child, .AvatarStack--right .avatar,
.flash-banner, .comment-reactions .add-reaction-btn,
.session-authentication .flash.is-signed-in,
.session-authentication .flash.is-signed-out, .select-menu-item,
.delete-topic-button, .topic-tag-action .add-topic-button,
.topic-tag-action .remove-topic-button, .ScreenshotCarousel-navitem:last-child,
.migrate-org-roles-item:last-child, .file-navigation .get-repo-btn.btn-block,
.file-navigation .get-repo-btn:only-child, .sso-modal.error .flash-error,
.tree-browser {
border-right: 0 !important;
}
/* auto-generated rule for "border-top: 0" */
.drag-and-drop, .menu-item:first-child, .border-top-0,
.markdown-body .csv-data tr, .markdown-body .csv-data th,
.boxed-group .tabnav.heading .tabnav-tab.selected, .boxed-group .tabnav-tab,
.boxed-group.dangerzone .boxed-group-inner,
.boxed-group-list:first-child>li:first-child,
.boxed-group-list.standalone>li:first-child, .boxed-group-warning:first-child,
.simple-conversation-list>li:first-child,
.discussion-item-changes-marker+.discussion-commits,
.discussion-timeline-actions .merge-pr,
.discussion-item-merged.open .discussion-item-details-header:first-child,
.discussion-item+.timeline-progressive-disclosure-container,
.timeline-progressive-disclosure-container+.discussion-item, .flash-banner,
.progress-bar-inline .progress-bar, .prose-diff>.markdown-body .added,
.prose-diff>.markdown-body ins+.added, .prose-diff>.markdown-body ins,
.auth-form-body, .session-authentication .flash.is-signed-in,
.session-authentication .flash.is-signed-out, .plan-choice-bottom,
ul.comparison-list>li.title, .select-menu-item, .delete-topic-button,
.topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button,
.discussion-post .comment .comment-reactions, .repository-lang-stats-graph,
.news .alert:first-child, .org-profile .member-badge,
.org-repos-mini .org-repo-mini-item:first-child .org-repo-mini-cell,
.invite-team-member-list .team:first-child .table-list-cell,
.migrate-ability-list-item:first-child, .confirm-removal-list-item:first-child,
.manage-repo-access-team-item:first-child, .member-badge+.member-badge,
.diffbar .table-of-contents li:first-child, .review-comment .comment-reactions,
.uploaded-files.is-populated+.drop-target p, .uploaded-files>li:nth-child(2),
.mini-repo-list>:first-child .mini-repo-list-item,
.experiment-repo-nav .new-issue-form, .file-wrap,
table.files tbody tr:first-child td, .listgroup-header,
.typeahead-result:first-child, #user-content-toc tr,
.gist-quicksearch-results .gist-quicksearch-result-group:first-child {
border-top: 0 !important;
}
/* auto-generated rule for "border-bottom-color: rgba(27,31,35,0.15)" */
.Popover-message:before, .dropdown-menu:before,
.diffbar-range-menu .in-range:not(.navigation-focus):not(.is-range-selected) {
border-bottom-color: #343434 !important;
}
/* auto-generated rule for "border-left-color: rgba(27,31,35,0.15)" */
.Popover-message--right:before, .Popover-message--right-top:before,
.Popover-message--right-bottom:before, .dropdown-menu-w:before {
border-left-color: #343434 !important;
}
/* auto-generated rule for "border-right-color: rgba(27,31,35,0.15)" */
.Popover-message--left:before, .Popover-message--left-top:before,
.Popover-message--left-bottom:before, .dropdown-menu-e:before {
border-right-color: #343434 !important;
}
/* auto-generated rule for "border-bottom-color: #fff" */
.Popover-message:after, .review-summary:after, .dropdown-menu:after,
.select-menu-tabs a.selected, .select-menu-tabs .select-menu-tab-nav.selected,
.gist-banner {
border-bottom-color: #181818 !important;
}
/* auto-generated rule for "border-left-color: #fff" */
.Popover-message--right:after, .Popover-message--right-top:after,
.Popover-message--right-bottom:after,
.boxed-group .tabnav.heading li:first-child .selected, .dropdown-menu-w:after {
border-left-color: #181818 !important;
}
/* auto-generated rule for "border-top-color: #fff" */
.Popover-message--bottom:after, .Popover-message--bottom-right:after,
.Popover-message--bottom-left:after, .select-menu-button.primary:after,
.HeaderNavlink:hover .dropdown-caret, .HeaderNavlink:focus .dropdown-caret,
.rename-owners-error span, .ldap-import-groups-container .team-name-exists,
.session-device.session-current .sessions-more-info:after,
.enterprise-mode .dropdown-caret {
border-top-color: #181818 !important;
}
/* auto-generated rule for "border-right-color: #fff" */
.Popover-message--left:after, .Popover-message--left-top:after,
.Popover-message--left-bottom:after, .commit-form:after,
.new-discussion-timeline .composer .timeline-comment:after,
.dropdown-menu-e:after, .branch-action-body:after {
border-right-color: #181818 !important;
}
/* auto-generated rule for "border-top: 7px solid #fff" */
.dropdown-menu-ne:after {
border-top: 7px solid #181818 !important;
}
/* auto-generated rule for "border-top: 8px solid rgba(27,31,35,0.15)" */
.dropdown-menu-ne:before {
border-top: 8px solid #343434 !important;
}
/* auto-generated rule for "color: #24292e" */
.pl-smi, .pl-s .pl-s1, .pl-mi, .pl-mb, body, .btn, .social-count,
.form-control, .form-select, p.explain strong, .menu-item.selected,
.menu-item .octicon, .tabnav-tab.selected, .tabnav-tab:hover,
.tabnav-tab:focus, .UnderlineNav-item:hover, .UnderlineNav-item:focus,
.UnderlineNav-item.selected, .text-gray-dark, .link-gray-dark,
.text-emphasized, .Counter--gray-light, .markdown-body span.frame span span,
.table-list-header-toggle .btn-link:hover,
.table-list-header-toggle .btn-link.selected,
.table-list-header-toggle .btn-link.selected:hover,
.table-list-header-toggle .select-menu-button:hover,
.table-list-header-toggle .select-menu-button.selected,
.table-list-header-toggle .select-menu-button.selected:hover,
.breadcrumb strong.final-path, .commit-author-section,
.commits-list-item .commit-title, .signed-commit-signer-name .signer,
.toc-select .select-menu-item-heading, .toc-select .select-menu-item-text,
.blob-code-inner, .blob-code-addition .x, .blob-code-deletion .x,
.tabnav-pr .tabnav-tab.selected, .discussion-item-entity,
.discussion-item-ref-title .title-link, .pull-request-integrations-title,
.discussion-item .renamed-was, .discussion-item .renamed-is, .dropdown-item,
.keyboard-mappings th, .facebox-user-list-item a,
.gollum-editor a.gollum-minibutton, .gollum-editor a.gollum-minibutton:visited,
.gollum-editor-page-title.ph, .gollum-editor-help-parent li a.selected,
.gollum-editor-help-list li a.selected, .gollum-dialog-dialog h4,
.list-group-item-link, .user-mention, .team-mention, .pagehead-actions>li,
.pagehead-tabs-item:hover, .pagehead-tabs-item.selected, .reponav-item:hover,
.reponav-item:focus, .reponav-item.selected, .steps li.current,
.prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon,
.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover:before,
.radio-label, .select-menu-header .select-menu-title, .select-menu-divider,
.select-menu-tabs a:hover, .select-menu-tabs .select-menu-tab-nav:hover,
.select-menu-tabs a.selected, .select-menu-tabs .select-menu-tab-nav.selected,
.select-menu-blankslate h3, .select-menu-item.selected,
.select-menu-item.selected>.octicon, .select-menu-item-parent.navigation-focus,
.select-menu-item-parent.navigation-focus.selected,
.select-menu-item-parent.navigation-focus .octicon-check,
.select-menu-item-parent.navigation-focus.selected .octicon-check, .blog-title,
.code-list em, .search-autocomplete-dropdown .autocomplete-text,
.CommunityTemplate-highlight, .layout-reorder-menu-list .module-title,
.filter-checkbox:checked+.filter-label .filter-context-name,
.dashboard-notice h2, .exploregrid-item-title, .getting-started .link-text,
.select-menu-item.navigation-focus>.octicon.label-options-icon,
.repository-lang-stats ol.repository-lang-stats-numbers li .lang,
.marketplace-plan-emphasis, .merge-branch-heading,
.oauth-org-access-details .oauth-org-item.on strong,
.oauth-application-whitelist .request-info strong,
.oauth-application-info .application-title,
.developer-app-item .developer-app-name, .manage-repo-access-not-active,
.manage-memberships-tabs-item.selected,
.pinned-repos-selection-list-item.selected,
.card-filter-autocomplete-dropdown .autocomplete-text,
.user-profile-repo-filter .filter-selected,
.repo-filterer .repo-filter.filter-selected,
.repository-meta .edit-repository-meta label, .access-token .token-description,
.access-token .credential-authorization-menu .status-heading, .token-scope,
.shelf-dismiss .close-button:hover, .team-listing .is-open .expand-nested-team,
.subheader-nav .nav-item.selected {
color: #c0c0c0 !important;
}
/* auto-generated rule for "color: #444d56" */
.hidden-text-expander a, .ellipsis-expander, .subnav-search-context .btn,
.markdown-body kbd, .email-format .email-hidden-toggle a,
.commit .commit-title, .commit .commit-title a, .commit-desc pre,
.commit-tease-sha, .timeline-commits .author,
.timeline-commits .commit-message>code a, .full-commit .branches-list li,
.full-commit .sha-block>.sha, .full-commit .sha-block>a,
.branches-tag-list li:first-child, .keyboard-mappings, kbd,
.pagehead-tabs-item .Counter, .reponav-item .Counter, .protip-callout,
.render-notice, .select-menu-header .close-button:hover,
.select-menu-header .octicon:hover, .select-menu-action,
.octofication .message p, table.capped-list .octicon,
table.capped-list.mini-icons .mini-icon, .illflow-item .illflow-item-heading,
.markdown-format kbd {
color: #b5b5b5 !important;
}
/* auto-generated rule for "color: #586069" */
.pl-ba, .btn .Counter, .form-checkbox .note, .hfields .form-group dt label,
.note, .drag-and-drop, .drag-and-drop-error-info, h2.account, p.explain,
.menu-heading, .tabnav-tab, .tabnav-extra,
.filter-list.pjax-active .filter-item, .filter-item, .subnav-item,
.subnav-search-input, .UnderlineNav-item, .text-gray, .link-gray, .muted-link,
.lead, .Label--gray, .Label--outline, .Counter, .Subhead-description,
.table-list-header-meta, .table-list-header-toggle .btn-link,
.suggester li small, .boxed-group>h3 a.boxed-group-breadcrumb,
.boxed-group .heading a.boxed-group-breadcrumb, .boxed-group-inner,
.boxed-group-inner .help, .breadcrumb, .btn-octicon, .capped-card>p,
.email-format .email-quoted-reply, .email-format .email-signature-reply,
.commit-tease, .commit-group-title, .commits-list-item .commit-meta,
.commits-list-item .commit-author, .commits-list-item .commit-desc pre,
.timeline-commits .commit-desc pre, .full-commit .sha-block,
.signed-commit-badge, .blob-num-expandable .diff-expander, .diffstat,
.discussion-sidebar-item, .discussion-sidebar-heading, .milestone-name,
.sidebar-assignee .assignee, .participation a, .lock-toggle-link,
.gh-header-meta, .gh-header-meta .author, .tabnav-pr .tabnav-tab,
.timeline-comment-header, .timeline-comment-header .author,
.timeline-comment-header-text code a, .discussion-item .author,
.discussion-item-icon, .discussion-item-header, .discussion-item-link,
.discussion-item-ref-title .issue-num, .discussion-item-help,
.discussion-item-integrations-callout .pull-request-integrations-dismiss,
.pull-request-integrations-body, .discussion-item-toggle, .environment-name,
.deployment-meta, .dropdown-header, .facebox .facebox-staff-links li,
.facebox-footer .help, .keyboard-mappings .keys, .org-privileges-tour-dismiss,
.gollum-editor-function-bar .gollum-editor-format-selector label,
.gollum-dialog-dialog-body fieldset label,
.list-group-item .list-group-item-summary a, .pagehead-tabs-item, .repohead h1,
.reponav-item, .steps .complete, .select-menu-modal,
.select-menu-item.selected .description, .select-menu-no-results,
.select-menu-item-text .description,
.select-menu-item-text .description-inline, .marketing .pagehead p,
.marketing-header .lead, .hanging-icon-list .octicon,
.intgrs-lstng-item-description, .intgr-admin-link .octicon,
.integration-settings-callout p, .credit-card .cvv span,
.billing-section .section-label, .lfs-data-icon, .payment-history .currency,
.payment-history .status, .discounted-original-price,
.billing-manager-banner-title, .blob-interaction-bar .octicon-search,
.blog-search .octicon-search, .blog-home:hover, .blog-feedback-description,
.status-meta, .merge-pr-more-commits, .range-editor-icon,
ul.comparison-list>li em, .branch-group-name,
.code-list .full-path .octicon-repo, ul.simple-conversation-list a.meta,
li.contribution .num, .octofication .notice-dismiss:hover,
.dnext-sidebar-menu .menu-item, .dashboard-notice .dismiss:hover,
.ghe-license-status p, .repo-snipit .octicon, .repo-snipit-description,
.file .data.empty, .graph-filter .info, .header-search-scope,
.integration-meta-head, .issues-reset-query,
.table-list-milestones .stat-label, .task-progress,
.marketplace-product-callout .branch-action-item-icon,
.marketplace-product-callout-close .octicon:hover, .merge-branch-description,
.owner-reponame .slash, .news blockquote, .news .alert .simple .title,
.news .github-welcome .done, .news div.message, .news li blockquote,
.notifications .read .type-icon, .notifications .read .list-group-item-name>a,
.notifications .read .notification-actions, .notifications-sso-prompt a,
.type-icon-state-none, .notifications-list .mark-all-as-read,
.notification-actions .age, .notification-actions .btn-link,
.thread-subscription-status, .oauth-permissions-details .octicon,
.oauth-permissions-details .permission-summary .access-details,
.oauth-no-description, .audit-log-search .member-info .ghost, .member-fullname,
.org .no-results, .org-repos-mini .org-repo-name .octicon-repo,
.add-member-wrapper .available-seats, .add-member-team-list .team-meta,
.team-list-footer .show-all-link .octicon, .migration-feature-list,
.migration-feature-list .octicon, .org-migration-settings-info,
.delete-owners-button, .rename-owners-team-form .note,
.migrate-ability-not-possible, .migrate-org-roles-lead,
.migrate-org-roles-count, .migrate-org-avatar-list .migrate-org-more-ellipsis,
.migrate-org-avatar-list .migrate-org-zero, .default-permission-update-text,
.team-info-card .team-description .link, .stats-group-stat,
.stats-group-stat.no-link:hover,
.confirm-removal-container .private-fork-count, .confirm-removal-team .octicon,
.confirm-removal-repo .octicon, .manage-member-meta-item,
.manage-member-meta-item .btn-link, .manage-member-meta-item>.octicon,
.org-user-notice-content .octicon, .manage-repo-access-lead,
.manage-memberships-tabs-item, .pages-composer p, .project-header-link,
.projects-reset-query, .pinned-repo-item .pinned-repository-handle,
.diffstat-summary, .summary-stats li, .summary-stats li a,
.releases-tag-list td.date a, .releases-tag-list p, .tag-references>li a,
.release-timeline-tags .date, .release-authorship, .uploaded-files>li.delete,
.uploaded-files .filesize, .uploaded-files .remove, .label-description,
.labels-list-action, .mini-repo-list .no-repo,
.mini-repo-list-item .repo-description, .timeout h3, .numbers-summary a,
.numbers-summary .nolink, .repository-meta, .branch-infobar,
.avatar-upload .upload-state p, .email-actions span.label,
.boxed-group .fork-flag, .oauth-app-info-container dl.keys dt,
.oauth-app-info-container .user-count, .logo-upload-container .upload-state p,
.logo-placeholder, .security-history .security-history-timestamp,
.two-factor-toggle .two-factor-status, .session-device,
.session-device.session-current .sessions-more-info,
.session-device.session-current .octicon,
.collaborators .collab-remove .remove-link, .access-sub-heading,
.boxed-group-list .access-level, .listgroup-item, .setup-header .lead a,
.setup-secondary .info, .setup-info-module h2 .price,
.setup-creditcard-form .help-text, .shelf-lead, .orgs-help-lead,
.orgs-help-item-content, .orgs-help-dismiss, .team-label-ldap,
.team-member-ellipsis, .team-breadcrumb.is-loading .breadcrumb-link,
.tree-browser .octicon-file-text, .toolbar-item, .toolbar-item .menu-target,
.member-suggestion .member-name, .member-suggestion .already-member-note,
.member-suggestion .non-member-note, .member-suggestion .non-member-action,
.team-suggestion .team-size, .team-suggestion .team-description,
.repo-access-add-team .team-size, .repo-access-add-team .team-description,
.follow-list .follow-list-info, .wiki-wrapper .wiki-empty-box,
.wiki-wrapper .wiki-empty-box:hover,
.wiki-wrapper .wiki-auxiliary-content .wiki-edit-link,
.wiki-wrapper .wiki-custom-sidebar .octicon-pencil, .pullquote,
.MarketingBody>p, .MarketingBody blockquote, .MarketingBody ul,
.MarketingBody ol, .gist-snippet-meta .gist-count-links>li>a,
.gist-revisions-list .gist-revision-meta {
color: #949494 !important;
}
/* auto-generated rule for "color: #666" */
.billing-addon-items .discounted-original-price, .sort-bar .sort-label,
.developer-thanks .hook, .repo-snipit-name, .notifications-list .confirmation,
.repo-subscription-container .intro, .subscriptions-content .repo-icon,
.orghead, .team-info-card .team-description, .vcard-username, .pulse-section,
.releases-tag-list p a, .tag-info h3 a, .release-timeline-tags .expander-text,
.release-authorship a, .repo-file-upload-target, .repo-file-upload-tree-target,
.repo-file-upload-file-wrap .remove-file:hover,
.mini-repo-list-item .repo-icon, .edit-profile-avatar .drag-and-drop,
.user-key-email-unverified, .email-preference-exceptions h5,
.collaborators .collab-info, .gist-snippet-meta .extra-info .text,
div.article .full-image:hover .octicon-x,
div.article #article-platform-nav ul li.selected, .sidebar li.muted,
.sidebar li.muted a, div.native-download p .mega-icon, ul#categories li h5,
ul#categories li h5 a, ul.search-results li, .content-header .silver-button,
a.button.classy, a.button.classy.disabled, a.button.classy.disabled:hover,
a.button.classy.disabled:hover:disabled, a.button.classy:disabled,
a.button.classy:disabled:hover, button.classy, button.classy.disabled,
button.classy.disabled:disabled:hover, button.classy:disabled,
button.classy:disabled:hover, input.classy, input.classy.disabled,
input.classy:disabled, input.classy:disabled:hover, label,
.btn-text-field .btn, form#new_category .input,
div.article-form-action-bar .custom-markup-injectors ul li a:hover,
.preview-tabs a.selected, div.search-form .autocomplete-results .header a,
.markdown-format h2, .markdown-format h6, .markdown-format blockquote,
.markdown-format blockquote strong, .markdown-format .intro,
.markdown-format code, .markdown-format pre, #footer, .index-list h4,
.index-list h5 {
color: #949494 !important;
}
/* auto-generated rule for "color: #6a737d" */
.pl-c, .cm-s-github-light .cm-comment,
.UnderlineNav-item:hover .UnderlineNav-octicon,
.UnderlineNav-item:focus .UnderlineNav-octicon,
.UnderlineNav-item.selected .UnderlineNav-octicon, .text-gray-light,
.markdown-body blockquote, .markdown-body h6, .table-list,
.autocomplete-item .organization-member,
.full-commit .branches-list li.loading,
.full-commit .branches-list li.pull-request, .branches-tag-list li.loading,
.commit-branches, .table-of-contents .octicon-diff-renamed,
.toc-select .select-menu-item-icon.octicon-diff-renamed,
.conversation-list-heading, .simple-conversation-list,
.simple-conversation-list>li .num, .deployment-status-label,
.list-group-item .list-group-item-summary a.quiet, .select-menu-tabs a,
.select-menu-tabs .select-menu-tab-nav, .select-menu-item.disabled,
.select-menu-item.disabled.selected, .select-menu-item.disabled .description,
.select-menu-item.disabled.selected .description, .credit-card.amex .title,
.billing-addon-items .addon-cost, .payment-history .refunded .status,
.plan-choice-exp, .blame-commit-date[data-heat="10"],
.blame-hunk:hover .reblame-link, .blog-aside .rss, .blog-post-meta,
.blog-post-meta a, ul.comparison-list>li.title, .branch-search .clear-search,
.branch-meta, .code-list .full-path a,
.layout-reorder-menu-list .is-hidden .module-title,
.context-filters .filter-label .filter-context-name, .graphs .dir,
.delete-topic-button, .topic-tag-action .add-topic-button,
.topic-tag-action .remove-topic-button, .hook-item .description,
.hook-item.pending .icon-for-pending, .hook-item.inactive .icon-for-inactive,
.hook-deliveries-list .item-status.pending, .hook-delivery-time,
.repository-lang-stats ol.repository-lang-stats-numbers li>a,
.repository-lang-stats ol.repository-lang-stats-numbers li>span,
.marketplace-plan-link-container .marketplace-plans-remaining,
.marketplace-product-callout-close .octicon,
.oauth-permissions-details.default:not(.delete) .access-details,
.oauth-permissions-details.default:not(.delete) .permission-title,
.oauth-permissions-details.none .access-details,
.oauth-permissions-details.none .permission-title,
.oauth-application-whitelist .edit-link, .oauth-application-info .app-info,
.developer-app-item .developer-app-list-meta, .export-actions a,
.owner-select-target.disabled, .owner-select-target.disabled .user-mention,
.pinned-repos-selection-list-item,
.card-filter-autocomplete-dropdown .autocomplete-text .autocomplete-text-qualifier,
.vcard-detail .octicon, .member-badge .octicon, .user-profile-bio,
.profile-timeline-card .issue-meta-section .octicon, .profile-rollup-toggle,
.release-label, .mini-repo-list-item .stars, .numbers-summary .octicon,
table.files td .simplified-path, table.files td.message,
table.files td.message a, table.files td.age,
.settings-email .email-actions .settings-remove-email.settings-disabled-remove-email,
.setup-creditcard-form .form-group select:invalid,
.task-run.pending .icon-for-pending, .task-run.inactive .icon-for-inactive,
.team-listing .expand-nested-team, .home-hero-signup .form-control-note,
.icon-cta>.octicon, .gist-snippet-meta .gist-count-links>li .octicon,
.gist-snippet-meta .extra-info, .gist-quicksearch-results .select-menu-item h4,
.gist-quicksearch-results .select-menu-item span {
color: #949494 !important;
}
/* auto-generated rule for "color: #959da5" */
.pl-sg, p.explain .octicon, .UnderlineNav-octicon, .btn-octicon.disabled,
.btn-octicon.disabled:hover, .commit-id,
.signed-commit-header .octicon-unverified, .footer-octicon:hover,
.repohead h1 .octicon, .license-summary-octicon, .octofication .notice-dismiss,
.dnext-content .octicon, .dashboard-notice .dismiss, .svg-tip,
.page-new-repo .octicon-repo, .news .alert .octicon, .news .alert .time,
.news .alert .title .subtle, .team-member-list .invite-icon,
.team-member-list-avatar .octicon, .pinned-repos-selection-list-item .stars,
.branch-infobar .muted-link .octicon, .shelf-dismiss,
.email-suggestion .octicon-mail,
.home-hero-signup .form-control-note .notice-highlight {
color: #7b7b7b !important;
}
/* auto-generated rule for "color: #a3aab1" */
.blankslate-icon, .gh-header-number, ul.comparison-list>li .octicon {
color: #606060 !important;
}
/* auto-generated rule for "color: #c6cbd1" */
.subnav-search-icon, .locked-conversation .write-tab,
.locked-conversation .preview-tab, .commit-group-title .octicon-git-commit,
.table-of-contents .toc-diff-stats .octicon, .footer-octicon, .steps li,
.select-menu-header .close-button, .select-menu-header .octicon {
color: #4d4d4d !important;
}
/* auto-generated rule for "color: rgba(27,31,35,0.85)" */
.boxed-group-warning, .intro-shelf {
color: rgba(230, 230, 230, .85) !important;
}
/* end auto-generated rules */
body {
background-color: #222 !important;
background-image: /*[[bg-choice]]*/ !important;
background-clip: border-box !important;
background-origin: padding-box !important;
background-attachment: /*[[bg-attachment]]*/ !important;
/*[[bg-options]]*/
}
/* custom code font */
pre, code, tt, kbd:not(.badmono), pre, samp, .blob-code, .file-data pre,
.line-data, #gist-form .file .input textarea, .blob-code-inner {
font-family: "/*[[font-choice]]*/", Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
}
/* Base link/panel colors - text */
a:not([href*="/labels/"]), input[type="text"]:focus + .header-search-scope,
.plans-row .plan, .filters li.selected, .vcard-stat, .zeroclipboard-button,
.creator a, button#logout:hover, #user-links .sign-out-button:hover,
.numbers-summary a:hover, .numbers-summary a:hover span, .tag-info a:hover,
.tag-info a:hover span, #forkqueue .instructions, .addon h4,
.api-status a:hover, .gist-item ul.meta > li > a:hover,
.sidebar-module h3 a:hover, a.browse-button:hover, a.browse-button:hover span,
.team-mention, .header-logo-invertocat:hover, .comment-header-actions li:hover,
.org-repo-stats a:hover, .muted-link:hover, a.muted-link:hover,
.org-module-link:hover, .org-module-link:hover .org-stats,
.org-module-link:hover .octicon, .org-header-info .name-link:hover,
.social-count:hover, .new-file-link span, .org-repo-name a:hover .repo-prefix,
.timeline-commits .commit-meta .octicon-comment-discussion:before,
.oauth-permissions-details .permission-title, .owner-name,
.timeline-comment-action:hover, .discussion-sidebar-toggle:hover,
.sidebar-assignee .assignee:hover, .timeline-commits .commit-message a:hover,
.timeline-commits .commit-id:hover, #markdown-toc li a:hover,
.sidebar-module ul ul li a:hover, .btn.btn-outline,
.org-teams-list .team:hover .team-name, .gh-header-back:hover span:before,
.org-header .edit-org:hover .octicon, .team-info-card .stats-group .stat:hover,
.team-info-card .stats-group .stat:hover .stat-number, .btn-octicon:hover,
a.discussion-item-entity:hover, .discussion-item-entity:hover,
.issues-listing .table-list-issues .issue-comments-link:hover,
.issues-listing .table-list-issues .issue-title-link:hover,
.issues-listing .table-list-issues .issue-meta-section a:hover,
.issues-reset-query:hover, .box-action:active,
.issues-listing .table-list-issues .milestone-link:hover .octicon,
.labels-list-action:hover, .commits-list-item .commits-comments-link:hover,
.discussion-item-ref-title .title-link:hover, .box-action:hover,
.repo-list-stats .repo-list-stat-item:hover, .branch-status-details,
.notification-actions .btn-link:hover, a.discussion-item-toggle-open:hover,
a.discussion-item-toggle-closed:hover,
button.discussion-item-toggle-open:hover,
button.discussion-item-toggle-closed:hover, .task-list a,
.full-commit .btn-outline:hover:not(:disabled), .zeroclipboard-link,
.stats-group-stat:hover, .stats-group-stat:hover .stat-number,
.tag-references > li a:hover, .two-factor-toggle .two-factor-status button,
.tree-browser tr.navigation-focus .octicon-chevron-right,
#header ul.top-nav > li > a:hover, #header ul.top-nav > li > button:hover,
.new-file-form, .date_selector td, .pagination a, .pagination span,
.pagination em, .timeline-comment-actions .octicon:hover, a.org-link:hover,
a.commit-link, .team-grid .team-name:focus, .team-grid .team-name:hover,
a.tabnav-extra:hover, .tabnav .tabnav-extras:hover,
.milestone-title-link a:hover,
.application-authorizations .oauth-app-owner:hover, .expand-more,
.participation a:hover, .commit .commit-title .issue-link,
.gist-snippet-meta .gist-count-links>li>a:hover,
.orgs-help-item-octicon .mega-octicon,
.release-timeline-tags .expander-text:hover, .ajax-pagination-btn,
.markdown-body a[href*="/labels/"], .select-menu-action:hover,
.wiki-wrapper .wiki-history .commit-id:hover, .milestone-name:hover,
.toolbar-item .menu-target:hover, .toolbar-item:hover,
.toolbar-commenting .dropdown-item:hover, .member-meta .member-meta-link:hover,
.octofication .broadcast-icon, .member-meta .btn-link:hover, .ghd-icon-active,
.oauth-application-info .meta-link:hover, .header-logo-wordmark:hover,
.lock-toggle-link:hover, a.lock-toggle-link:hover,
.toolbar-item .menu-target:focus, .toolbar-item:focus, .sub-nav li a:hover,
.site-header-menu .nav-item:hover,
.scoped-search .form-control.focus .header-search-scope, .text-blue,
a.text-blue, .orghead .edit-org:hover,
.Box-body-row--highlight .Box-row-link:hover, td.selectable-day,
.date-selector .date-button, .exploregrid-item:hover .exploregrid-item-title,
.stale-files-tab a, .intgrs-lstng-item-link:hover .intgrs-lstng-item-header,
.link-blue, a.link-blue, .profile-rollup-toggle:hover,
.site-header-nav a:hover, .link-gray-dark:hover,
.dashboard-notice .octicon-organization, .Box-row-link:hover,
.project-header-link:hover, a.project-header-link:hover,
td.icon .octicon-file-directory, td.icon .octicon-file-symlink-directory,
td.icon .octicon-file-submodule, .pl-corl, .header-nav-link:hover,
.header-nav-link:focus, .header-navlink:hover, .header-navlink:focus,
.HeaderNavlink:hover, .HeaderNavlink:focus, a.notification-indicator:hover,
table.files td.message a:hover, .link-gray:hover, .news .link-gray-dark:hover,