forked from StylishThemes/GitHub-Dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-dark.user.css
4745 lines (4744 loc) · 406 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.20.98
@homepageURL https://github.com/StylishThemes/GitHub-Dark
@updateURL https://stylishthemes.github.io/GitHub-Dark/github-dark.user.css
@license CC-BY-SA-4.0
@author StylishThemes
@advanced color base-color "Base color scheme" #4f8cc9
@advanced dropdown syntax-theme "Github syntax theme" {
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;
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;
One Dark "One Dark" <<<EOT
/*! GitHub: One Dark *\/.CodeMirror,.highlight{background:#141414!important;color:#aab1bf!important}.blob-code,.blob-code-inner{color:#aab1bf!important}.pl-c,.pl-c span{color:#5b6270!important;font-style:italic!important}.pl-c1{color:#d19965!important}.pl-sr .pl-cce{color:#56b5c2!important;font-weight:400!important}.pl-cn{color:#d19965!important}.pl-e{color:#d19965!important}.pl-ef{color:#61afef!important}.pl-en{color:#61afef!important}.pl-enc{color:#e4bf7a!important}.pl-enf{color:#61afef!important}.pl-enm{color:#aab1bf!important}.pl-ens{color:#be5046!important}.pl-ent{color:#df6b75!important}.pl-entc{color:#e4bf7a!important}.pl-enti{color:#56b5c2!important}.pl-entm{color:#df6b75!important}.pl-eoa{color:#d19965!important}.pl-eoac{color:#d19965!important}.pl-eoac .pl-pde{color:#d19965!important}.pl-eoai{color:#61afef!important}.pl-eoi{color:#97c279!important}.pl-k{color:#c578dd!important}.pl-ko{color:#aab1bf!important}.pl-kolp{color:#c578dd!important}.pl-kos{color:#61afef!important}.pl-kou{color:#d19965!important}.pl-mai .pl-sf{color:#56b5c2!important}.pl-mb{color:#d19965!important;font-weight:700!important}.pl-mc{color:#c578dd!important}.pl-mh{color:#df6b75!important}.pl-mh .pl-pdh{color:#61afef!important}.pl-mi{color:#c578dd!important;font-style:italic!important}.pl-ml{color:#56b5c2!important}.pl-mm{color:#d19965!important}.pl-mp{color:#818896!important}.pl-mp1 .pl-sf{color:#aab1bf!important}.pl-mq{color:#d19965!important}.pl-mr{color:#61afef!important}.pl-ms{color:#aab1bf!important}.pl-pdb{color:#e4bf7a!important;font-weight:700!important}.pl-pdc{color:#5b6270!important;font-style:italic!important}.pl-pdc1{color:#aab1bf!important}.pl-pde{color:#c578dd!important}.pl-pdi{color:#c578dd!important;font-style:italic!important}.pl-pds{color:#97c279!important}.pl-pdv{color:#df6b75!important}.pl-pse .pl-s1{color:#97c279!important}.pl-pse .pl-s2{color:#e4bf7a!important}.pl-s{color:#97c279!important}.pl-s1{color:#97c279!important}.pl-s2{color:#e4bf7a!important}.pl-mp .pl-s3{color:#d19965!important}.pl-s3{color:#d19965!important}.pl-sc{color:#e4bf7a!important}.pl-scp{color:#aab1bf!important}.pl-sf{color:#56b5c2!important}.pl-smc{color:#aab1bf!important}.pl-smi{color:#df6b75!important}.pl-smp{color:#e4bf7a!important}.pl-sok{color:#d19965!important}.pl-sol{color:#df6b75!important}.pl-som{color:#aab1bf!important}.pl-sr{color:#56b5c2!important}.pl-sr .pl-sra{color:#56b5c2!important}.pl-src{color:#56b5c2!important}.pl-sr .pl-sre{color:#e4bf7a!important}.pl-st{color:#56b5c2!important}.pl-stj{color:#e4bf7a!important}.pl-stp{color:#818896!important}.pl-sv{color:#d19965!important}.pl-v{color:#e4bf7a!important}.pl-vi{color:#be5046!important}.pl-vo{color:#56b5c2!important}.pl-vpf{color:#aab1bf!important}.pl-mi1{color:#97c279!important;background:#020!important}.pl-mdht{color:#97c279!important;background:#020!important}.pl-md{color:#df6b75!important;background:#200!important}.pl-mdhf{color:#df6b75!important;background:#200!important}.pl-mdr{color:#aab1bf!important;font-weight:400!important}.pl-mdh{color:#df6b75!important;font-weight:400!important}.pl-mdi{color:#df6b75!important;font-weight:400!important}.pl-corl{color:#df6b75!important;text-decoration:underline!important}.pl-ib{background-color:#df6b75!important}.pl-id{background-color:#513d14!important;color:#e0c184!important}.pl-ii{background-color:#e0c184!important;color:#fff!important}.pl-iu{background-color:#e05151!important}.pl-mo{color:#aab1bf!important}.pl-mri{color:#97c279!important}.pl-ms1{color:#aab1bf!important;background-color:#373b41!important}.pl-va{color:#aab1bf!important}.pl-vpu{color:#aab1bf!important}.pl-entl{color:#df6b75!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;
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" {
Twilight "Twilight" <<<EOT
/*! CodeMirror: Twilight *\/.cm-comment,.cm-link{font-style:italic!important}.CodeMirror-gutters{background:#222!important;border-right:1px solid #484848!important}.CodeMirror-guttermarker{color:#fff!important}.CodeMirror-guttermarker-subtle,.CodeMirror-linenumber{color:#aaa!important}.CodeMirror-cursor{border-left:1px solid #fff!important}.CodeMirror-activeline-background{background:#27282e!important}.CodeMirror-matchingbracket{outline:grey solid 1px!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,.cm-variable-3,span.cm-def,span.cm-tag{color:#607392!important}.cm-builtin,.cm-operator{color:#cda869!important}.cm-comment{color:#777!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-tag{color:#997643!important}.cm-attribute{color:#d6bb6d!important}.cm-header{color:#ff6400!important}.cm-hr{color:#aeaeae!important}.cm-link{color:#ad9361!important;text-decoration:none!important}.cm-error{border-bottom:1px solid red!important} EOT;
Ambiance "Ambiance" <<<EOT
/*! CodeMirror: Ambiance *\/.cm-header{color:#00f!important}.cm-bracket,.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-property,.cm-variable-2{color:#eed1b3!important}.cm-variable-3{color:#faded3!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-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: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,span.cm-link,span.cm-number{color:#b48ead!important}span.cm-attribute,span.cm-property,span.cm-variable{color:#a3be8c!important}span.cm-keyword,span.cm-tag{color:#bf616a!important}span.cm-string{color:#ebcb8b!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}.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,.cm-keyword{color:#ffee80!important}.CodeMirror-guttermarker-subtle,.CodeMirror-linenumber{color:#d0d0d0!important}.CodeMirror-cursor{border-left:1px solid #fff!important}.cm-comment{color:#08f!important}.cm-atom,.cm-link{color:#845dc4!important}.cm-number,span.cm-attribute{color:#ff80e1!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-error{color:#9d1e15!important}.CodeMirror-activeline-background{background:#002d57!important}.CodeMirror-matchingbracket{outline:grey solid 1px!important;color:#fff!important} EOT;
Dracula "Dracula" <<<EOT
/*! CodeMirror: Dracula *\/.CodeMirror,.CodeMirror-gutters{background-color:#282a36!important;color:#f8f8f2!important;border:none!important}.CodeMirror-activeline-background,.CodeMirror-focused div.CodeMirror-selected{background:rgba(255,255,255,.1)!important}.CodeMirror-gutters{color:#282a36!important}.CodeMirror-cursor{border-left:thin solid #f8f8f0!important}.CodeMirror-linenumber{color:#6d8a88!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-atom,span.cm-number{color:#bd93f9!important}span.cm-attribute,span.cm-builtin,span.cm-qualifier,span.cm-variable,span.cm-variable-3{color:#50fa7b!important}span.cm-variable-2{color:#fff!important}span.cm-def{color:#ffb86c!important}span.cm-keyword,span.cm-operator,span.cm-tag{color:#ff79c6!important}span.cm-meta{color:#f8f8f2!important}span.cm-property{color:#66d9ef!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-guttermarker,.CodeMirror-guttermarker-subtle,.CodeMirror-gutters,.CodeMirror-linenumber{color:#537f7e!important}.CodeMirror-gutters{background:#263238!important;border:none!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-def,.cm-operator{color:rgba(233,237,237,1)!important}.cm-meta,.cm-string-2,.cm-tag,.cm-variable-2{color:#80cbc4!important}.cm-builtin,.cm-qualifier,.cm-type,.cm-variable-3{color:#decb6b!important}.cm-atom,.cm-number{color:#f77669!important}.cm-string{color:#c3e88d!important}.cm-comment{color:#546e7a!important}.cm-variable{color:#82b1ff!important}.cm-attribute{color:#ffcb6b!important}.cm-property{color:#80cbae!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,.CodeMirror-linenumber{color:#8a8a8a!important}.CodeMirror-cursor{border-left:1px solid #f8f8f0!important}.cm-comment{color:grey!important}.cm-atom,.cm-header,.cm-link,.cm-number,.cm-variable-3{color:#ae81ff!important}.cm-property,span.cm-attribute{color:#a6e22e!important}.cm-def,.cm-keyword{color:#66d9ef!important;font-style:italic!important}.cm-bracket,.cm-builtin,.cm-variable{color:#f8f8f8!important}.cm-string{color:#e6db74!important}.cm-variable-2{color:#9effff!important}.cm-tag{color:#f92672!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,.CodeMirror-linenumber{color:#d0d0d0!important}.CodeMirror-cursor{border-left:1px solid #f8f8f0!important}.cm-comment{color:#75715e!important}.cm-atom,.cm-header,.cm-link,.cm-number{color:#ae81ff!important}.cm-property,span.cm-attribute{color:#a6e22e!important}.cm-keyword,.cm-tag{color:#f92672!important}.cm-builtin,.cm-variable-3{color:#66d9ef!important}.cm-string{color:#e6db74!important}.cm-bracket,.cm-variable{color:#f8f8f2!important}.cm-variable-2{color:#9effff!important}.cm-def{color:#fd971f!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;
One Dark "One Dark" <<<EOT
/*! CodeMirror: One Dark *\/.cm-comment,.cm-header .cm-em,.cm-quote{font-style:italic!important}.CodeMirror,.CodeMirror-scroll{font-weight:300;background-color:#141414!important;color:#aab1bf!important}.CodeMirror-matchingbracket{color:#aab1bf!important;background-color:rgba(204,217,255,.09)!important;border-bottom:1px solid #518bff!important}.CodeMirror-selected{background:rgba(204,217,255,.05)!important}.CodeMirror-focused .CodeMirror-selected{background:rgba(204,217,255,.09)!important}.CodeMirror-lines{padding:4px 0!important}.CodeMirror pre{padding:0 4px!important}.CodeMirror-gutter,.CodeMirror-gutters{white-space:nowrap!important;border:none!important;background:0 0!important}.CodeMirror-linenumber{padding:0 30px!important;min-width:20px!important;text-align:right!important;white-space:nowrap!important;color:#393d46!important}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#ccc!important}.CodeMirror-cursor{border-left:2px solid #518bff!important}.CodeMirror-activeline,.cm-punctuation{color:#5b6270!important}.CodeMirror-overwrite .CodeMirror-cursor{border-left:none!important;border-bottom:1px solid #aab1bf!important}.cm-def,.cm-header,.cm-negative,.cm-tag{color:#df6b75!important}.cm-header .cm-em{color:#c678dd!important}.cm-header .cm-strong{color:#d19a66!important;font-weight:700!important}.cm-quote{color:#d19965!important}.cm-keyword{color:#c578dd!important}.cm-atom,.cm-attribute,.cm-meta,.cm-number,.cm-property,.cm-variable-2{color:#d19965!important}.cm-variable{color:#e4bf7a!important}.cm-variable-3{color:#56b5c2!important}.cm-operator{color:#aab1bf!important}.cm-comment{color:#5b6270!important}.cm-positive,.cm-string,.cm-string-2{color:#97c279!important}.cm-qualifier{color:#d19a66!important}.cm-builtin{color:#61afef!important}.cm-bracket{color:#abb2bf!important}.cm-link{color:#df6b75!important;border-bottom:1px solid #df6b75!important;cursor:pointer!important}.cm-em{color:#c578dd!important;font-style:italic}.cm-strong{color:#e4bf7a!important;font-weight:700} 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,.CodeMirror-linenumber,.cm-property{color:#8f938f!important}.CodeMirror-cursor{border-left:1px solid #a7a7a7!important}.cm-comment{color:#a6c6ff!important}.cm-atom,.cm-variable-3{color:#de8e30!important}.cm-number{color:#ccc!important}.cm-attribute{color:#a6e22e!important}.cm-keyword,.cm-variable{color:#aeb2f8!important}.cm-string{color:#66a968!important}.cm-variable-2{color:#bebf55!important}.cm-def{color:#757ad8!important}.cm-bracket{color:#f8f8f2!important}.cm-qualifier,.cm-tag,span.cm-builtin{color:#c1c144!important}.cm-link{color:#ae81ff!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!important} EOT;
Solarized Dark "Solarized Dark" <<<EOT
/*! CodeMirror: Solarized Dark *\/.CodeMirror-widget{text-shadow:none!important}.CodeMirror-gutter .CodeMirror-gutter-text,.CodeMirror-guttermarker-subtle,.cm-header{color:#586e75!important}.cm-quote,.cm-tag{color:#93a1a1!important}.cm-bracket,.cm-keyword{color:#cb4b16!important}.cm-atom,.cm-builtin,.cm-number{color:#d33682!important}.cm-attribute,.cm-def,.cm-property{color:#2aa198!important}.cm-variable{color:#839496!important}.cm-qualifier,.cm-string-2,.cm-variable-2{color:#b58900!important}.cm-operator,.cm-special,.cm-variable-3{color:#6c71c4!important}.cm-comment{color:#586e75!important;font-style:italic!important}.CodeMirror-matchingbracket,.cm-meta,.cm-string{color:#859900!important}.CodeMirror-nonmatchingbracket{color:#dc322f!important}.cm-hr{color:transparent!important;border-top:1px solid #586e75!important;display:block!important}.cm-link{color:#93a1a1!important;cursor:pointer!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;background-color:#073642!important}.CodeMirror-linenumber{color:#586e75!important;text-shadow:#021014 0 -1px!important;padding:0 5px!important}.CodeMirror-guttermarker{color:#ddd!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,.cm-def{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,.cm-link,.cm-number{color:#a16a94!important}.cm-property,span.cm-attribute{color:#9c9!important}.cm-keyword,.cm-tag{color:#d54e53!important}.cm-string{color:#e7c547!important}.cm-variable{color:#b9ca4a!important}.cm-variable-2{color:#7aa6da!important}.cm-bracket{color:#eaeaea!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,.cm-keyword,.cm-tag{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,.cm-link,.cm-number{color:#a16a94!important}.cm-property,.cm-variable,span.cm-attribute{color:#9c9!important}.cm-string{color:#fc6!important}.cm-variable-2{color:#69c!important}.cm-def{color:#f99157!important}.cm-bracket{color:#ccc!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;
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,.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-attribute,.cm-builtin,.cm-def,.cm-tag{color:#8da6ce!important}.cm-s-vibrant span.cm-def,.cm-s-vibrant span.cm-tag,.cm-variable-2,.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-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:grey solid 1px!important;color:#fff!important} EOT;
}
@advanced dropdown syntax-jupyter "Jupyter syntax theme" {
Twilight "Twilight" <<<EOT
/*! Jupyter: Twilight *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#141414!important;color:#ccc!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#ffc!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#5f5a60!important;font-style:italic!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {border:#b22518!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#cda869!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#5f5a60!important;font-style:italic!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#5f5a60!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#5f5a60!important;font-style:italic!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#5f5a60!important;font-style:italic!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {background:#420e09!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {font-style:italic!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {background:#b22518!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:navy!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {background:#253b22!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {font-weight:700!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:purple!important;font-weight:700!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#e9df8f!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#9b703f!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#f9ee98!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#cda869!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#9b859d!important;font-weight:700!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#9b859d!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#7587a6!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#cf6a4c!important;font-weight:700!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#9b703f!important;font-weight:700!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#9b859d!important;font-weight:700!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#cda869!important;font-weight:700!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#7587a6!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#a2f!important;font-weight:700!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#141414!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#cf6a4c!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#cf6a4c!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#cf6a4c!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#cf6a4c!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#8f9d6a!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#8f9d6a!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#8f9d6a!important;font-style:italic!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#8f9d6a!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#f9ee98!important;font-weight:700!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#8f9d6a!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#daefa3!important;font-weight:700!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#8f9d6a!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#e9c062!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#8f9d6a!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#cf6a4c!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#0aa!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#7587a6!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#7587a6!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#7587a6!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#099!important} EOT;
Base16 Ocean Dark "Base16 Ocean Dark" <<<EOT
/*! Jupyter: Base16 Ocean Dark *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#2b303b!important;color:#eff1f5!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#4f5b66!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#65737e!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#bf616a!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#b48ead!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#d08770!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#eff1f5!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#96b5b4!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#eff1f5!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#65737e!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#65737e!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#65737e!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#65737e!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#bf616a!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {font-style:italic!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#eff1f5!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#a3be8c!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#65737e!important;font-weight:700!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#96b5b4!important;font-weight:700!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#b48ead!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#b48ead!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#96b5b4!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#b48ead!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#b48ead!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#ebcb8b!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#a3be8c!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#d08770!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#a3be8c!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#8fa1b3!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#eff1f5!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#ebcb8b!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#bf616a!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#96b5b4!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#eff1f5!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#bf616a!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#8fa1b3!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#eff1f5!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#ebcb8b!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#8fa1b3!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#eff1f5!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#96b5b4!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#bf616a!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#96b5b4!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#eff1f5!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#d08770!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#d08770!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#d08770!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#d08770!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#a3be8c!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#eff1f5!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#65737e!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#a3be8c!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#d08770!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#a3be8c!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#d08770!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#a3be8c!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#a3be8c!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#a3be8c!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#a3be8c!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#eff1f5!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#bf616a!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#bf616a!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#bf616a!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#d08770!important} EOT;
Dracula theme "Dracula theme" <<<EOT
/*! Jupyter: Dracula theme *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#282a36!important;color:#f8f8f2!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#ffc!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#6272a4!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#f8f8f2!important}#notebook .highlight .g, body.api .highlight .g, body.blog .highlight .g {color:#f8f8f2!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#ff79c6!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#f8f8f2!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#f8f8f2!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#f8f8f2!important}#notebook .highlight .x, body.api .highlight .x, body.blog .highlight .x {color:#f8f8f2!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#f8f8f2!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#6272a4!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#ff79c6!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#6272a4!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#6272a4!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#8b080b!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {color:#f8f8f2!important;text-decoration:underline!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {color:#f8f8f2!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#f8f8f2!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#f8f8f2!important;font-weight:700!important;background-color:#468410!important}#notebook .highlight .go, body.api .highlight .go, body.blog .highlight .go {color:#3b3a32!important;background-color:#32343f!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#f8f8f2!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {color:#f8f8f2!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#f8f8f2!important;font-weight:700!important}#notebook .highlight .gt, body.api .highlight .gt, body.blog .highlight .gt {color:#f8f8f0!important;background-color:#ff79c6!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#ff79c6!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#ff79c6!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#ff79c6!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#ff79c6!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#ff79c6!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#f8f8f2!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#f8f8f2!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#bd93f9!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#f1fa8c!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#50fa7b!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#f8f8f2!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#f8f8f2!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#f8f8f2!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#f8f8f2!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#f8f8f2!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#f8f8f2!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#50fa7b!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#f1fa8c!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#f8f8f2!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#f8f8f2!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#f8f8f2!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#ff79c6!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#8be9fd!important;font-style:italic!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#ff79c6!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#f8f8f2!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#bd93f9!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#bd93f9!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#bd93f9!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#bd93f9!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#f1fa8c!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#f1fa8c!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#f1fa8c!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#f1fa8c!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#f1fa8c!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#f1fa8c!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#f1fa8c!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#f1fa8c!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#f1fa8c!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#f1fa8c!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#f1fa8c!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#f8f8f2!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#8be9fd!important;font-style:italic!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#8be9fd!important;font-style:italic!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#8be9fd!important;font-style:italic!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#bd93f9!important} EOT;
Github Dark (Native mod) theme "Github Dark (Native mod) theme" <<<EOT
/*! Jupyter: Github Dark (Native mod) theme *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#111!important;color:#d0d0d0!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#404040!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#3677a9!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#a61717!important;background-color:#311!important}#notebook .highlight .g, body.api .highlight .g, body.blog .highlight .g {color:#d0d0d0!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#ccc!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#d0d0d0!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#ccc!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#777!important}#notebook .highlight .x, body.api .highlight .x, body.blog .highlight .x {color:#d0d0d0!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#e9b96e!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#3677a9!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#d2691e!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#3677a9!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#e50808!important;background-color:#520000!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#d22323!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {color:#d0d0d0!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {color:#d22323!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#fff!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#589819!important}#notebook .highlight .go, body.api .highlight .go, body.blog .highlight .go {color:#ccc!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#aaa!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {color:#d0d0d0!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#fff!important}#notebook .highlight .gt, body.api .highlight .gt, body.blog .highlight .gt {color:#d22323!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#6ab825!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#6ab825!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#6ab825!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#6ab825!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#6ab825!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#6ab825!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#d0d0d0!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#cd2828!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#d2691e!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#bbb!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#24909d!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#447fcf!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#4ca!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:orange!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#d0d0d0!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#bbb!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#098!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#d0d0d0!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#447fcf!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#d0d0d0!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#d0d0d0!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#6ab825!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#4ca!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#6ab825!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#666!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#cd2828!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#cd2828!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#cd2828!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#cd2828!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#d2691e!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#d2691e!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#d2691e!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#d2691e!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#d2691e!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#d2691e!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#d2691e!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:orange!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#cd2828!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#d2691e!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#d2691e!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#24909d!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#4ca!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#4ca!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#4ca!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#cd2828!important} EOT;
Idle Fingers "Idle Fingers" <<<EOT
/*! Jupyter: Idle Fingers *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#323232!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background:#ffc!important}#notebook .highlight, body.api .highlight, body.blog .highlight {background:#323232!important;color:#fff!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#bc9458!important;font-style:italic!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#fff!important}#notebook .highlight .g, body.api .highlight .g, body.blog .highlight .g {color:#fff!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#cc7833!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#fff!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#fff!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#fff!important}#notebook .highlight .x, body.api .highlight .x, body.blog .highlight .x {color:#fff!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#fff!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#bc9458!important;font-style:italic!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#cc7833!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#bc9458!important;font-style:italic!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#bc9458!important;font-style:italic!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#fff!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {color:#fff!important;text-decoration:underline!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {color:#fff!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#fff!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#fff!important}#notebook .highlight .go, body.api .highlight .go, body.blog .highlight .go {color:#404040!important;background:#353637!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#fff!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {color:#fff!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#fff!important;font-weight:700!important}#notebook .highlight .gt, body.api .highlight .gt, body.blog .highlight .gt {color:#fff!important;background:red!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#cc7833!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#cc7833!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#cc7833!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#cc7833!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#cc7833!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#ffc66d!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#fff!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#6c99bb!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#a5c261!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#ffc66d!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#fff!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#fff!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#6c99bb!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#fff!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#fff!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#fff!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#ffc66d!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#a5c261!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#fff!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#fff!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#fff!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#cc7833!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#fff!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#cc7833!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#fff!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#6c99bb!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#6c99bb!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#6c99bb!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#6c99bb!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#a5c261!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#a5c261!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#a5c261!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#a5c261!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#a5c261!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#a5c261!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#a5c261!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#a5c261!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#a5c261!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#a5c261!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#a5c261!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#fff!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#fff!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#fff!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#fff!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#6c99bb!important} EOT;
Monokai - Spacegray Eighties "Monokai - Spacegray Eighties" <<<EOT
/*! Jupyter: Monokai - Spacegray Eighties *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background-color:#1c1c1c!important;color:#f8f8f8!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#2c2c2c!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:grey!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#960050!important;background-color:#1e0010!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#66d9ef!important;font-style:italic!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#ae81ff!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#f8f8f8!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#f92672!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#f8f8f8!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:grey!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:grey!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:grey!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:grey!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#ae81ff!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#66d9ef!important;font-style:italic!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#f92672!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#ae81ff!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#ae81ff!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#66d9ef!important;font-style:italic!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#e6db74!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#ae81ff!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#e6db74!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#a6e22e!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#f8f8f8!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#a6e22e!important;font-style:italic!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#ae81ff!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#a6e22e!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#f92672!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#a6e22e!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#a6e22e!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#f8f8f8!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#f8f8f8!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#f8f8f8!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#f92672!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#f92672!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#f92672!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#f92672!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#f8f8f8!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#ae81ff!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#ae81ff!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#ae81ff!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#ae81ff!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#e6db74!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#e6db74!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#e6db74!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#e6db74!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#ae81ff!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#e6db74!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#e6db74!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#e6db74!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#e6db74!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#e6db74!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#e6db74!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#f92672!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#f92672!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#f92672!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#f92672!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#ae81ff!important} EOT;
Monokai "Monokai" <<<EOT
/*! Jupyter: Monokai *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#272822!important;color:#f8f8f2!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#49483e!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#75715e!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#960050!important;background-color:#1e0010!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#66d9ef!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#ae81ff!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#f8f8f2!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#f92672!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#f8f8f2!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#75715e!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#75715e!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#75715e!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#75715e!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#66d9ef!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#66d9ef!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#f92672!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#66d9ef!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#66d9ef!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#66d9ef!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#e6db74!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#ae81ff!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#e6db74!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#a6e22e!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#f8f8f2!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#a6e22e!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#66d9ef!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#a6e22e!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#f8f8f2!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#a6e22e!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#a6e22e!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#f8f8f2!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#f8f8f2!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#a6e22e!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#f8f8f2!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#f92672!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#f8f8f2!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#f92672!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#f8f8f2!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#ae81ff!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#ae81ff!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#ae81ff!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#ae81ff!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#e6db74!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#e6db74!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#e6db74!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#e6db74!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#ae81ff!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#e6db74!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#e6db74!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#e6db74!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#e6db74!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#e6db74!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#e6db74!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#f8f8f2!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#f8f8f2!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#f8f8f2!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#f8f8f2!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#ae81ff!important} EOT;
Obsidian "Obsidian" <<<EOT
/*! Jupyter: Obsidian *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background-color:#293134!important;color:#e0e2e4!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#66747b!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#e0e2e4!important;background-color:#da4236!important}#notebook .highlight .g, body.api .highlight .g, body.blog .highlight .g {color:#e0e2e4!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#93c763!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#e0e2e4!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#e0e2e4!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#93c763!important}#notebook .highlight .x, body.api .highlight .x, body.blog .highlight .x {color:#96989a!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#e0e2e4!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#66747b!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#93c763!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#66747b!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#93c763!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#ec7600!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {color:#e0e2e4!important;font-style:italic!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {color:#da4236!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#66747b!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#93c763!important}#notebook .highlight .go, body.api .highlight .go, body.blog .highlight .go {color:#e0e2e4!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#e0e2e4!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {color:#e0e2e4!important;font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#66747b!important}#notebook .highlight .gt, body.api .highlight .gt, body.blog .highlight .gt {color:#e0e2e4!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#96989a!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#678cb1!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#93c763!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#93c763!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#678cb1!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#da4236!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#e0e2e4!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#ec7600!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#ec7600!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#e0e2e4!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#93c763!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#678cb1!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#96989a!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#678cb1!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#96989a!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#96989a!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#678cb1!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#e0e2e4!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#e0e2e4!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#e0e2e4!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#e0e2e4!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#678cb1!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#678cb1!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#93c763!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#e0e2e4!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#ec7600!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#ec7600!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#ec7600!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#ec7600!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#66747b!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#ec7600!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#e0e2e4!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#ec7600!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#96989a!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#e0e2e4!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#ec7600!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#ec7600!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#d39745!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#ec7600!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#ec7600!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#678cb1!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#678cb1!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#678cb1!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#678cb1!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#ec7600!important} EOT;
Pastel on Dark "Pastel on Dark" <<<EOT
/*! Jupyter: Pastel on Dark *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#2b2b2b!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background:#ffc!important}#notebook .highlight, body.api .highlight, body.blog .highlight {background:#2b2b2b!important;color:#e6e1dc!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#555!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#e6e1dc!important}#notebook .highlight .g, body.api .highlight .g, body.blog .highlight .g {color:#e6e1dc!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#4d74d0!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#e6e1dc!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#e6e1dc!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#e6e1dc!important}#notebook .highlight .x, body.api .highlight .x, body.blog .highlight .x {color:#e6e1dc!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#e6e1dc!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#555!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#e6e1dc!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#555!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#555!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#e6e1dc!important;background:#600!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {color:#e6e1dc!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {color:#ffc66d!important;background:#900!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#fff!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#e6e1dc!important;background:#519f50!important}#notebook .highlight .go, body.api .highlight .go, body.blog .highlight .go {color:#e6e1dc!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#e6e1dc!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {color:#e6e1dc!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#fff!important}#notebook .highlight .gt, body.api .highlight .gt, body.blog .highlight .gt {color:#e6e1dc!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#4d74d0!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#4d74d0!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#4d74d0!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#4d74d0!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#4d74d0!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#c1c144!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#e6e1dc!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#a5c261!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#ad9361!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#6782d3!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#e6e1dc!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#e6e1dc!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#a1a1ff!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#e6e1dc!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#47b8d6!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#e6e1dc!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#6782d3!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#e6e1dc!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#e6e1dc!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#e6e1dc!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#e6e1dc!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#4d74d0!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#c1c144!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#e6e1dc!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#e6e1dc!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#a5c261!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#a5c261!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#a5c261!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#a5c261!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#ad9361!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#ad9361!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#ad9361!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#ad9361!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#ad9361!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#ad9361!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#ad9361!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#ad9361!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#ad9361!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#ad9361!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#ad9361!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#e6e1dc!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#c1c144!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#c1c144!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#c1c144!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#a5c261!important} EOT;
Solariazed Dark "Solariazed Dark" <<<EOT
/*! Jupyter: Solariazed Dark *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background-color:#002b36!important;color:#839496!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#586e75!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#dc322f!important;background-color:#fdf6e3!important}#notebook .highlight .g, body.api .highlight .g, body.blog .highlight .g {color:#839496!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#859900!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#839496!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#839496!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#859900!important}#notebook .highlight .x, body.api .highlight .x, body.blog .highlight .x {color:#cb4b16!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#839496!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#586e75!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#859900!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#586e75!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#859900!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#2aa198!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {color:#839496!important;font-style:italic!important}#notebook .highlight .gr, body.api .highlight .gr, body.blog .highlight .gr {color:#dc322f!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#cb4b16!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#859900!important}#notebook .highlight .go, body.api .highlight .go, body.blog .highlight .go {color:#839496!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#839496!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {color:#839496!important;font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#cb4b16!important}#notebook .highlight .gt, body.api .highlight .gt, body.blog .highlight .gt {color:#839496!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#cb4b16!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#268bd2!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#859900!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#859900!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#268bd2!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#dc322f!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#839496!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#2aa198!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#2aa198!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#839496!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#b58900!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#268bd2!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#cb4b16!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#268bd2!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#cb4b16!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#cb4b16!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#268bd2!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#839496!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#839496!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#839496!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#839496!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#268bd2!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#268bd2!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#859900!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#839496!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#2aa198!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#2aa198!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#2aa198!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#2aa198!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#586e75!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#2aa198!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#839496!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#2aa198!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#cb4b16!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#839496!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#2aa198!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#2aa198!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#dc322f!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#2aa198!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#2aa198!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#268bd2!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#268bd2!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#268bd2!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#268bd2!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#2aa198!important} EOT;
Tomorrow Night Blue "Tomorrow Night Blue" <<<EOT
/*! Jupyter: Tomorrow Night Blue *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#002451!important;color:#fff!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#003f8e!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#7285b7!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#ff9da4!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#ebbbff!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#ffc58f!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#fff!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#9ff!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#fff!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#7285b7!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#7285b7!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#7285b7!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#7285b7!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#ff9da4!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {font-style:italic!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#fff!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#d1f1a9!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#7285b7!important;font-weight:700!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#9ff!important;font-weight:700!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#ebbbff!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#ebbbff!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#9ff!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#ebbbff!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#ebbbff!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#ffeead!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#d1f1a9!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#ffc58f!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#d1f1a9!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#bbdaff!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#fff!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#ffeead!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#ff9da4!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#9ff!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#fff!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#ff9da4!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#bbdaff!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#fff!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#ffeead!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#bbdaff!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#fff!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#9ff!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#ff9da4!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#9ff!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#fff!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#ffc58f!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#ffc58f!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#ffc58f!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#ffc58f!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#d1f1a9!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#fff!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#7285b7!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#d1f1a9!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#ffc58f!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#d1f1a9!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#ffc58f!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#d1f1a9!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#d1f1a9!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#d1f1a9!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#d1f1a9!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#fff!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#ff9da4!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#ff9da4!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#ff9da4!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#ffc58f!important} EOT;
Tomorrow Night Bright "Tomorrow Night Bright" <<<EOT
/*! Jupyter: Tomorrow Night Bright *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#000!important;color:#eaeaea!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#424242!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#969896!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#d54e53!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#c397d8!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#e78c45!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#eaeaea!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#70c0b1!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#eaeaea!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#969896!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#969896!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#969896!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#969896!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#d54e53!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {font-style:italic!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#eaeaea!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#b9ca4a!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#969896!important;font-weight:700!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#70c0b1!important;font-weight:700!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#c397d8!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#c397d8!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#70c0b1!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#c397d8!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#c397d8!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#e7c547!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#b9ca4a!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#e78c45!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#b9ca4a!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#7aa6da!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#eaeaea!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#e7c547!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#d54e53!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#70c0b1!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#eaeaea!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#d54e53!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#7aa6da!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#eaeaea!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#e7c547!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#7aa6da!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#eaeaea!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#70c0b1!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#d54e53!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#70c0b1!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#eaeaea!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#e78c45!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#e78c45!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#e78c45!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#e78c45!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#b9ca4a!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#eaeaea!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#969896!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#b9ca4a!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#e78c45!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#b9ca4a!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#e78c45!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#b9ca4a!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#b9ca4a!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#b9ca4a!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#b9ca4a!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#eaeaea!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#d54e53!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#d54e53!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#d54e53!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#e78c45!important} EOT;
Tomorrow Night Eighties "Tomorrow Night Eighties" <<<EOT
/*! Jupyter: Tomorrow Night Eighties *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#2d2d2d!important;color:#ccc!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#515151!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#999!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#f2777a!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#c9c!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#f99157!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#ccc!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#6cc!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#ccc!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#999!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#999!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#999!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#999!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#f2777a!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {font-style:italic!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#ccc!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#9c9!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#999!important;font-weight:700!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#6cc!important;font-weight:700!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#c9c!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#c9c!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#6cc!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#c9c!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#c9c!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#fc6!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#9c9!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#f99157!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#9c9!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#69c!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#ccc!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#fc6!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#f2777a!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#6cc!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#ccc!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#f2777a!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#69c!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#ccc!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#fc6!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#69c!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#ccc!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#6cc!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#f2777a!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#6cc!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#ccc!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#f99157!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#f99157!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#f99157!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#f99157!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#9c9!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#ccc!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#999!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#9c9!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#f99157!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#9c9!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#f99157!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#9c9!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#9c9!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#9c9!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#9c9!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#ccc!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#f2777a!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#f2777a!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#f2777a!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#f99157!important} EOT;
Tomorrow Night "Tomorrow Night" <<<EOT
/*! Jupyter: Tomorrow Night *\/#notebook .input_area,#notebook .highlight, body.api .highlight, body.blog .highlight, #notebook .highlight pre, body.api .highlight pre, body.blog .highlight pre, #notebook .highlight table, body.api .highlight table, body.blog .highlight table, body.api code,body.api pre,body.blog code,body.blog pre{background:#1d1f21!important;color:#c5c8c6!important}#notebook .highlight .hll, body.api .highlight .hll, body.blog .highlight .hll {background-color:#373b41!important}#notebook .highlight .c, body.api .highlight .c, body.blog .highlight .c {color:#969896!important}#notebook .highlight .err, body.api .highlight .err, body.blog .highlight .err {color:#c66!important}#notebook .highlight .k, body.api .highlight .k, body.blog .highlight .k {color:#b294bb!important}#notebook .highlight .l, body.api .highlight .l, body.blog .highlight .l {color:#de935f!important}#notebook .highlight .h, body.api .highlight .h, body.blog .highlight .h, #notebook .highlight .n, body.api .highlight .n, body.blog .highlight .n {color:#c5c8c6!important}#notebook .highlight .o, body.api .highlight .o, body.blog .highlight .o {color:#8abeb7!important}#notebook .highlight .p, body.api .highlight .p, body.blog .highlight .p {color:#c5c8c6!important}#notebook .highlight .cm, body.api .highlight .cm, body.blog .highlight .cm {color:#969896!important}#notebook .highlight .cp, body.api .highlight .cp, body.blog .highlight .cp {color:#969896!important}#notebook .highlight .c1, body.api .highlight .c1, body.blog .highlight .c1 {color:#969896!important}#notebook .highlight .cs, body.api .highlight .cs, body.blog .highlight .cs {color:#969896!important}#notebook .highlight .gd, body.api .highlight .gd, body.blog .highlight .gd {color:#c66!important}#notebook .highlight .ge, body.api .highlight .ge, body.blog .highlight .ge {font-style:italic!important}#notebook .highlight .gh, body.api .highlight .gh, body.blog .highlight .gh {color:#c5c8c6!important;font-weight:700!important}#notebook .highlight .gi, body.api .highlight .gi, body.blog .highlight .gi {color:#b5bd68!important}#notebook .highlight .gp, body.api .highlight .gp, body.blog .highlight .gp {color:#969896!important;font-weight:700!important}#notebook .highlight .gs, body.api .highlight .gs, body.blog .highlight .gs {font-weight:700!important}#notebook .highlight .gu, body.api .highlight .gu, body.blog .highlight .gu {color:#8abeb7!important;font-weight:700!important}#notebook .highlight .kc, body.api .highlight .kc, body.blog .highlight .kc {color:#b294bb!important}#notebook .highlight .kd, body.api .highlight .kd, body.blog .highlight .kd {color:#b294bb!important}#notebook .highlight .kn, body.api .highlight .kn, body.blog .highlight .kn {color:#8abeb7!important}#notebook .highlight .kp, body.api .highlight .kp, body.blog .highlight .kp {color:#b294bb!important}#notebook .highlight .kr, body.api .highlight .kr, body.blog .highlight .kr {color:#b294bb!important}#notebook .highlight .kt, body.api .highlight .kt, body.blog .highlight .kt {color:#f0c674!important}#notebook .highlight .ld, body.api .highlight .ld, body.blog .highlight .ld {color:#b5bd68!important}#notebook .highlight .m, body.api .highlight .m, body.blog .highlight .m {color:#de935f!important}#notebook .highlight .s, body.api .highlight .s, body.blog .highlight .s {color:#b5bd68!important}#notebook .highlight .na, body.api .highlight .na, body.blog .highlight .na {color:#81a2be!important}#notebook .highlight .nb, body.api .highlight .nb, body.blog .highlight .nb {color:#c5c8c6!important}#notebook .highlight .nc, body.api .highlight .nc, body.blog .highlight .nc {color:#f0c674!important}#notebook .highlight .no, body.api .highlight .no, body.blog .highlight .no {color:#c66!important}#notebook .highlight .nd, body.api .highlight .nd, body.blog .highlight .nd {color:#8abeb7!important}#notebook .highlight .ni, body.api .highlight .ni, body.blog .highlight .ni {color:#c5c8c6!important}#notebook .highlight .ne, body.api .highlight .ne, body.blog .highlight .ne {color:#c66!important}#notebook .highlight .nf, body.api .highlight .nf, body.blog .highlight .nf {color:#81a2be!important}#notebook .highlight .nl, body.api .highlight .nl, body.blog .highlight .nl {color:#c5c8c6!important}#notebook .highlight .nn, body.api .highlight .nn, body.blog .highlight .nn {color:#f0c674!important}#notebook .highlight .nx, body.api .highlight .nx, body.blog .highlight .nx {color:#81a2be!important}#notebook .highlight .py, body.api .highlight .py, body.blog .highlight .py {color:#c5c8c6!important}#notebook .highlight .nt, body.api .highlight .nt, body.blog .highlight .nt {color:#8abeb7!important}#notebook .highlight .nv, body.api .highlight .nv, body.blog .highlight .nv {color:#c66!important}#notebook .highlight .ow, body.api .highlight .ow, body.blog .highlight .ow {color:#8abeb7!important}#notebook .highlight .w, body.api .highlight .w, body.blog .highlight .w {color:#c5c8c6!important}#notebook .highlight .mf, body.api .highlight .mf, body.blog .highlight .mf {color:#de935f!important}#notebook .highlight .mh, body.api .highlight .mh, body.blog .highlight .mh {color:#de935f!important}#notebook .highlight .mi, body.api .highlight .mi, body.blog .highlight .mi {color:#de935f!important}#notebook .highlight .mo, body.api .highlight .mo, body.blog .highlight .mo {color:#de935f!important}#notebook .highlight .sb, body.api .highlight .sb, body.blog .highlight .sb {color:#b5bd68!important}#notebook .highlight .sc, body.api .highlight .sc, body.blog .highlight .sc {color:#c5c8c6!important}#notebook .highlight .sd, body.api .highlight .sd, body.blog .highlight .sd {color:#969896!important}#notebook .highlight .s2, body.api .highlight .s2, body.blog .highlight .s2 {color:#b5bd68!important}#notebook .highlight .se, body.api .highlight .se, body.blog .highlight .se {color:#de935f!important}#notebook .highlight .sh, body.api .highlight .sh, body.blog .highlight .sh {color:#b5bd68!important}#notebook .highlight .si, body.api .highlight .si, body.blog .highlight .si {color:#de935f!important}#notebook .highlight .sx, body.api .highlight .sx, body.blog .highlight .sx {color:#b5bd68!important}#notebook .highlight .sr, body.api .highlight .sr, body.blog .highlight .sr {color:#b5bd68!important}#notebook .highlight .s1, body.api .highlight .s1, body.blog .highlight .s1 {color:#b5bd68!important}#notebook .highlight .ss, body.api .highlight .ss, body.blog .highlight .ss {color:#b5bd68!important}#notebook .highlight .bp, body.api .highlight .bp, body.blog .highlight .bp {color:#c5c8c6!important}#notebook .highlight .vc, body.api .highlight .vc, body.blog .highlight .vc {color:#c66!important}#notebook .highlight .vg, body.api .highlight .vg, body.blog .highlight .vg {color:#c66!important}#notebook .highlight .vi, body.api .highlight .vi, body.blog .highlight .vi {color:#c66!important}#notebook .highlight .il, body.api .highlight .il, body.blog .highlight .il {color:#de935f!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?://((blog|gist|guides|help|launch-editor|raw|resources|status|developer)\\.)?github\\.com/((?!generated_pages/preview).)*$"), domain("githubusercontent.com"), domain("graphql-explorer.githubapp.com") {
/*! Github Dark v1.20.98 (2019-01-13) */
/*! Repository: https://github.com/StylishThemes/GitHub-Dark */
/*! License: https://creativecommons.org/licenses/by-sa/4.0/ */
button {
color: #b5b5b5 !important;
}
.Popover-message:before {
border-bottom-color: #343434;
}
.Popover-message:after {
border-bottom-color: #181818;
}
/* begin auto-generated rules - use tools/generate.js to generate them */
/* auto-generated rule for "background: #fff" */
image-crop .handle:before, .pagination a, .pagination em, .pagination span,
.AvatarStack-body, .blankslate code, .markdown-body .csv-data .blob-num,
.ajax-pagination-form .ajax-pagination-btn, .autocomplete-results, .suggester,
.boxed-group-inner, .commit-group-title .octicon-git-commit,
.full-commit .commit-meta, .conversation-list-heading .inner,
.details-overlay[open] > .dropdown-item:hover,
.discussion-timeline.team-discussion-timeline .blankslate, ul.comparison-list,
.tint-box.transparent, .dashboard-notice .coupon,
.getting-started .list-group-item, .topic-tag-outline,
.MarketplaceEdit-body .menu-item.selected,
.oauth-org-access-details .oauth-org-item.on,
.oauth-org-access-details .oauth-org-item.revoked, .manage-repo-access-icon,
table.files, .qr-code-table .white, .action-card:after,
.action-card-controls:before, .actions-bg-mask,
.TenYearNav-year.selected .TenYearNav-digits,
.TenYearNav-year:hover .TenYearNav-digits,
.gist-snippet-meta .gist-count-links > li > a:hover, .gist-quicksearch-results,
div#common-issues ul, .markdown-format img, .dropdown-menu,
.btn-primary .counter, .bg-white, .card, .pagination > span,
.rgh-reactions-near-limit {
background: #181818 !important;
}
/* auto-generated rule for "background: #fafbfc" */
.facebox-footer, ul.comparison-list > li.title,
.getting-started .list-group-item:focus,
.getting-started .list-group-item:hover,
.discussion-post .timeline-inline-comments,
.discussion-post .reply-comment .review-comment.is-comment-editing,
.MarketplaceEdit-body .menu-item {
background: #181818 !important;
}
/* auto-generated rule for "background: #eaecef" */
.branch-a-b-count .bar-ahead.even, .branch-a-b-count .bar-behind.even {
background: #343434 !important;
}
/* auto-generated rule for "background: #d1d5da" */
.avatar.avatar-more:after, .AvatarStack--right .avatar.avatar-more {
background: #444 !important;
}
/* auto-generated rule for "background: #fffbdd" */
.form-checkbox label em.highlight, .form-warning {
background: #261d08 !important;
}
/* auto-generated rule for "background: #0366d6" */
.suggester li.navigation-focus, .suggester li:hover,
.suggester li[aria-selected=true],
.jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,
.jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path,
.action-card-icon, .action-card-controls:after,
.js-expandable-line:hover .diff-expander, .js-expandable-line:hover .blob-code {
background: /*[[base-color]]*/ !important;
}
/* auto-generated rule for "background-color: #fff" */
body, .btn-primary .Counter, .btn-purple .Counter, .btn-blue .Counter,
.btn-outline, .btn-outline.selected .Counter, .btn-outline:active .Counter,
.btn-outline:hover .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, .Box--overlay, .btn-invisible,
.commit-tease-contributors, .commit-icon .octicon, .gh-header,
.gh-header .gh-header-sticky.is-stuck + .gh-header-shadow,
.gh-header-edit .edit-issue-title:focus, .timeline-comment,
.new-discussion-timeline .composer .comment-form-head.tabnav,
.discussion-timeline-actions, .pagination-loader-container, .dropdown-menu,
.facebox-popup, .pagehead-tabs-item.selected, .reponav-item.selected,
.steps li.current, .select-menu-modal,
.select-menu-tabs .select-menu-tab-nav.selected,
.select-menu-tabs .select-menu-tab-nav[aria-selected=true],
.select-menu-tabs a.selected, .select-menu-tabs a[aria-selected=true],
.btn-blurple .Counter, .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, .checks-index-item:hover,
.checks-index-item.selected, .documentation-results a, .select-menu-item,
.coupons .coupon-form-body, .dashboards-overview-cards .blankslate,
.file .image .border-wrap, .page-responsive .HeaderMenu--logged-out,
.MarketplaceSideNav, .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-header,
.projects-comment-form .comment-form-head .toolbar-commenting,
.user-profile-sticky-bar:after, .user-profile-nav, .pr-toolbar, .diffbar,
.review-comment .is-comment-editing, .review-thread-reply .inline-comment-form,
.review-summary-form-wrapper, .readme .markdown-body, .readme .plain,
.is-bad-file .repo-file-upload-errors, .is-empty .repo-file-upload-errors,
.is-failed .repo-file-upload-errors, .is-hidden-file .repo-file-upload-errors,
.is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors,
.setup-info-module, .orgs-help-item-octicon, .business-sso .business-sso-panel,
.business-sso .org-sso-panel, .org-sso .business-sso-panel,
.org-sso .org-sso-panel, .tree-browser tr.navigation-focus td,
.tree-browser tr[aria-selected=true] td, .user-status-header,
.btn-orange .Counter, .btn-outline-purple,
.btn-outline-purple.selected .Counter, .btn-outline-purple:active .Counter,
.btn-outline-purple:hover .Counter, [open] > .btn-outline-purple .Counter,
.btn-outline-purple.disabled, .btn-outline-purple:disabled,
.btn-outline-orange, .btn-outline-orange.selected .Counter,
.btn-outline-orange:active .Counter, .btn-outline-orange:hover .Counter,
[open] > .btn-outline-orange .Counter, .btn-outline-orange.disabled,
.btn-outline-orange:disabled, .btn-outline-green,
.btn-outline-green.selected .Counter, .btn-outline-green:active .Counter,
.btn-outline-green:hover .Counter, [open] > .btn-outline-green .Counter,
.btn-outline-green.disabled, .btn-outline-green:disabled,
.btn-transparent:active, .btn-transparent:hover, .Tile:hover,
.btn-outline-mktg, .btn-outline-mktg:hover, .callout-permalink-big-figcaption,
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,
.btn-outline.selected .counter, .btn-outline.zeroclipboard-is-active .counter,
.btn-outline.zeroclipboard-is-hover .counter, .btn-outline:active .counter,
.btn-outline:hover .counter, .btn-outline.disabled:hover,
.btn-outline:disabled:hover, .card, table, [class*=btn-outline].disabled,
[class*=btn-outline].disabled:hover, [class*=btn-outline]:disabled,
[class*=btn-outline]:disabled:hover, .btn-outline-white:active,
.btn-outline-white:hover, .site-header-nav .dropdown-menu, .homepage-jumbotron,
.libraries-jumbotron, .sidebar-menu, .content table tr {
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, .pagination .disabled,
.pagination .disabled:hover, .pagination .gap, .pagination .gap:hover,
.bg-gray-light, .blankslate, .markdown-body kbd, .boxed-group-table th,
.blob-expanded .blob-code, .blob-expanded .blob-num,
.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, .steps li,
.listgroup-item.disabled, .billing-addon-items tr:nth-child(2n), .plan-choice,
.merge-status-item, .branch-action-body .merge-branch-form,
.branch-action-body .merge-message, .range-editor, .dashboard-notice,
.newsletter-frequency-choice h3, .file-header, .jump-to-field-active, .orghead,
.manage-repo-access-not-active, .new-label, .filter-bar, .branch-infobar,
.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(2n), .bg-hero-dots-gray:before,
.site-subheader-sticky.is-stuck, .site-subheader-bg-gray,
.illflow-item:not(.selected):hover, .markdown-format kbd {
background-color: #181818 !important;
}
/* auto-generated rule for "background-color: #eaecef" */
.filter-item:hover, .Label--gray,
.timeline-commits .hidden-text-expander .ellipsis-expander, .progress-bar,
.profile-timeline.discussion-timeline .profile-timeline-month-heading:after,
.profile-timeline.discussion-timeline:before {
background-color: #343434 !important;
}
/* auto-generated rule for "background-color: #d1d5da" */
.block-diff-neutral {
background-color: #444 !important;
}
/* auto-generated rule for "background-color: #6a737d" */
.Label--gray-darker, .state, .State, .Counter--gray,
.discussion-item-head_ref_deleted .discussion-item-icon,
.branch-action-state-closed-dirty .branch-action-icon,
.branch-action-state-dirty .branch-action-icon,
.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-icon,
.completeness-indicator-problem, .check-annotation-notice:after,
.issues-reset-query-icon, .projects-reset-query-icon {
background-color: #222 !important;
}
/* auto-generated rule for "background-color: #f1f8ff" */
.Box-row--focus-blue.navigation-focus, .Box-row--hover-blue:hover,
.Box--blue .Box-header, .Box-header--blue, .Box-row--blue, .bg-blue-light,
.commit-tease, .blob-code-expandable, .blob-code-hunk,
.timeline-comment.current-user .timeline-comment-header,
.timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav,
.list-group-item.navigation-focus, .list-group-item[aria-selected=true],
.comment-reactions .user-has-reacted,
.select-menu-item-parent.navigation-focus,
.select-menu-item-parent.navigation-focus.selected,
.select-menu-item-parent[aria-selected=true],
.select-menu-item-parent[aria-selected=true].selected, .topic-tag,
.delete-topic-button, .topic-tag-action, .topic-tag-action .add-topic-button,
.topic-tag-action .remove-topic-button, .pinned-issue-item.is-dragging,
.pinned-issue-item.sortable-ghost, .reaction-sort-item[aria-checked=true],
.pinned-repo-checkbox:checked + .pinned-repo-name, .project-column.moving,
.project-card.moving, .pinned-repo-item.is-dragging,
.pinned-repo-item.sortable-ghost,
.diffbar-range-menu .in-range:not(.navigation-focus):not(.is-range-selected),
.diffbar-range-menu .in-range:not([aria-selected=true]):not(.is-range-selected),
.setup-form .setup-plans tr.selected, .illflow-blue .selected {
background-color: #242424 !important;
}
/* 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-color: #163 !important;
}
/* auto-generated rule for "background-color: #032f62" */
.bg-blue-dark, .pricing-matrix-table .pricing-matrix-table-dark {
background-color: #182030 !important;
}
/* auto-generated rule for "background-color: #dbedff" */
.flash, a.commit-ref:hover, .blob-num-expandable, .blob-num-hunk,
.add-reactions-options-item:active {
background-color: #182030 !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,
.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: #0366d6" */
.btn-outline.selected, .btn-outline:active, .btn-outline:hover,
[open] > .btn-outline, .filter-list.pjax-active .filter-item.pjax-active,
.filter-item.selected, .subnav-item.selected, .subnav-item.selected:focus,
.subnav-item.selected:hover, .pagination .current, .pagination .current:hover,
.bg-blue, .autocomplete-item.navigation-focus, .autocomplete-item.selected,
.autocomplete-item:hover, .autocomplete-item[aria-selected=true],
.email-format .email-hidden-toggle a:active,
.timeline-commits .hidden-text-expander .ellipsis-expander:hover,
.blob-num-expandable .diff-expander:hover,
.blob-num-expandable .directional-expander:hover, .add-line-comment,
.discussion-item-changes-marker .discussion-item-icon,
.dropdown-item.zeroclipboard-is-hover, .dropdown-item:focus,
.dropdown-item:hover, .select-menu-item.navigation-focus,
.select-menu-item.navigation-focus .description-inline,
.select-menu-item.navigation-focus.select-menu-action,
.select-menu-item.navigation-focus.selected, .select-menu-item:focus,
.select-menu-item:focus .description-inline,
.select-menu-item:focus.select-menu-action, .select-menu-item:focus.selected,
.select-menu-item:hover, .select-menu-item:hover .description-inline,
.select-menu-item:hover.select-menu-action, .select-menu-item:hover.selected,
.select-menu-item[aria-checked=true]:focus,
.select-menu-item[aria-checked=true]:hover,
.select-menu-item[aria-selected=true] .description-inline,
.select-menu-item[aria-selected=true].select-menu-action,
.select-menu-item[aria-selected=true]:focus,
.select-menu-item[aria-selected=true]:hover,
.plan-choice--experiment.plan-choice--blue.open .plan-choice-icon,
.plan-choice--experiment.plan-choice--blue.selected .plan-choice-icon,
.search-autocomplete-dropdown .navigation-item.navigation-focus,
.search-autocomplete-dropdown .navigation-item[aria-selected=true],
.CommunityTemplate-highlight--focus, .newsletter-frequency-choice:hover h3,
.notification-indicator:hover .mail-status,
.issues-reset-query:hover .issues-reset-query-icon,
a.task-progress:hover .progress-bar .progress, .reaction-sort-item:focus,
.reaction-sort-item:hover, .org-insights-graph-canvas .metric-0 circle,
.org-insights-graph-canvas path.metric-0,
.org-insights-svg-tip .metric-0 .legend, .theme-selector-thumbnail.selected,
.card-filter-autocomplete-dropdown .navigation-focus,
.card-filter-autocomplete-dropdown [aria-selected=true],
.projects-reset-query:hover .projects-reset-query-icon,
.typeahead-result.navigation-focus, .typeahead-result:hover,
.typeahead-result[aria-selected=true], .selected-emoji,
.user-status-org-button.selected, .btn-mktg:hover,
.gist-snippet .link-overlay .link {
background-color: /*[[base-color]]*/ !important;
color: #fff !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:focus, .subnav-item:hover,
.bg-gray, .markdown-body table tr:nth-child(2n), .table-list-header,
.ajax-pagination-form .ajax-pagination-btn:focus,
.ajax-pagination-form .ajax-pagination-btn:hover,
.ajax-pagination-form.loading .ajax-pagination-btn, .boxed-group .heading,
.boxed-group > h3, .commit-sha, .signed-commit-header,
.select-menu-item + .semantic-toc-file:after,
.semantic-toc-symbol:not(.last-visible):after, .copyable-terminal,
.timeline-comment-header, .protip code, .render-notice, .select-menu-filters,
.TagsearchPopover-list .TagsearchPopover-list-item:hover,
.community-checklist .progress,
.team-discussion-new-post .review-thread-reply-button:disabled,
.related-issue-item.navigation-focus, .MarketplaceSideNav,
.ScreenshotCarousel-navitem.selected,
.notifications .read.mark-as-unread-enabled.list-group-item, .sortable-ghost,
.review-comment-loader:after, .review-comment.is-comment-editing:after,
.review-comment:after, .review-thread-reply, .Tile,
.callout-permalink-stacked-image.webcasts,
.callout-permalink-stacked-image.case-studies,
.callout-permalink-stacked-image.videos,
.callout-permalink-stacked-image.events:before,
.webcasts .callout-permalink-big-image,
.events .callout-permalink-big-image:before,
.videos .callout-permalink-big-image,
.case-studies .callout-permalink-big-image {
background-color: #202020 !important;
}
/* auto-generated rule for "border: 1px solid #e1e4e8" */
.subnav-item, .pagination a, .pagination em, .pagination span, .border,
.blankslate, .table-list-header, .ajax-pagination-form .ajax-pagination-btn,
.signed-commit-badge, .deployment-status-label, .list-group-item,
.progress-bar-inline .progress-bar, .range-editor, .code-list .file-box,
.ScreenshotCarousel, .conflict-resolver.loading, .review-thread,
.review-comment .is-comment-editing, .review-summary-form-wrapper,
.orgs-help-item-octicon, .business-sso .business-sso-panel,
.business-sso .org-sso-panel, .org-sso .business-sso-panel,
.org-sso .org-sso-panel, .avatar-before-user-status, .data-table,
.pricing-matrix-table td, .pricing-matrix-table th {
border-color: #343434 !important;
}
/* auto-generated rule for "border: 1px solid #eee" */
.newsletter-frequency-choice, .thread-subscription-status, .two-factor-steps,
.qr-code-table, .blankslate code {
border-color: #343434 !important;
}
/* auto-generated rule for "border: 1px solid rgba(27,31,35,.15)" */
.flash, .Label--outline, .boxed-group .heading, .boxed-group > h3,
.comment-form-error, .comment-form-stale, .full-commit, .dropdown-menu,
.select-menu-modal, .RecentBranches, .pull-request-review-menu,
.pull-request-suggested-changes-menu, .shelf-dismiss .close-button,
.site-header-nav .dropdown-menu {
border-color: rgba(225, 225, 225, .2) !important;
}
/* auto-generated rule for "border: 2px solid #fff" */
.discussion-item-icon,
.org-insights-cards .repository-lang-stats-graph .language-color,
.pending-cards-status, .release-timeline-tags .tag-timeline-date:after {
border-color: #222 !important;
}
/* auto-generated rule for "border: solid #ddd" */
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" */
.pagination a:focus, .pagination a:hover, .pagination em:focus,
.pagination em:hover, .pagination span:focus, .pagination span:hover,
.select-menu-item + .semantic-toc-file:after,
.semantic-toc-symbol:not(.last-visible):after, .tabnav-pr,
.tabnav-pr .tabnav-tab.selected {
border-color: #343434 !important;
}
/* auto-generated rule for "border-color: #eaecef" */
.border-gray-light {
border-color: #343434 !important;
}
/* auto-generated rule for "border-bottom-color: #e36209" */
.UnderlineNav-item.selected,
.org-insights-cards [role=tab][aria-selected=true],
.user-status-emoji-tab[role=tab][aria-selected=true] {
border-bottom-color: #eee !important;
}
/* auto-generated rule for "border-bottom: 1px solid #f8f8f8" */
.u2f-registration {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #dfe2e5" */
.rule, hr, .suggester li, .conversation-list-heading,
.select-menu-text-filter:first-child:last-child, .select-menu-tabs,
table.capped-list th {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-top: 1px solid #e1e4e8" */
.Box-row, .Box-footer, .border-y, .border-top, .border-sm-top, .border-md-top,
.border-lg-top, .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-branch-form, .branch-action-body .merge-message,
.branch-action-item + .branch-action-item,
.branch-action-item + .mergeability-details,
.codesearch-results .repo-list-item + .repo-list-item,
.dashboard-rollup-items > .dashboard-rollup-item,
.topic-list .topic-list-item + .topic-list-item,
.discussion-post .reply-comment:first-child,
.issue-list-item + .issue-list-item, .last-review-thread, .review-thread-reply,
.file-navigation .get-repo-btn, .user-list-item + .user-list-item,
.wiki-list .wiki-list-item + .wiki-list-item {
border-top: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #e1e4e8" */
.Box-body, .menu-item, .menu-heading, .UnderlineNav, .border-y, .border-bottom,
.border-sm-bottom, .border-md-bottom, .border-lg-bottom, .Subhead, .table-list,
.boxed-group-list > li, .signed-commit-header,
.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-header, .pagehead,
.select-menu-divider, .select-menu-header, .merge-status-item,
body.full-width-p-0 .new-discussion-timeline, .file-header,
.jump-to-suggestions-results-container .navigation-item,
.discussion-item-body .outdated-comment[open] .file-header, .release-entry,
.user-status-container-border, .data-table td, .data-table th,
.data-table tbody tr:last-child td, .data-table tbody tr:last-child th,
.pricing-table thead th {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-left: 1px solid #e1e4e8" */
.border-left, .border-sm-left, .border-md-left, .border-lg-left,
.summary-stats li, .user-status-container-border {
border-left: 1px solid #343434 !important;
}
/* auto-generated rule for "border-right: 1px solid #e1e4e8" */
.border-right, .border-sm-right, .border-md-right, .border-lg-right,
.reaction-summary-item, .MarketplaceSideNav, .ScreenshotCarousel-navitem,
.file-navigation .get-repo-btn:first-child, .user-status-container-border,
.data-table td, .data-table th {
border-right: 1px solid #343434 !important;
}
/* auto-generated rule for "border-top: 1px solid #eaecef" */
.table-list-cell, .table-of-contents li + li,
.blob-expanded + tr:not(.blob-expanded) .blob-code,
.blob-expanded + tr:not(.blob-expanded) .blob-num,
.blob-expanded .blob-num-hunk,
tr:not(.blob-expanded) + .blob-expanded .blob-code,
tr:not(.blob-expanded) + .blob-expanded .blob-num, ul.comparison-list > li,
.profile-rollup-wrapper + .profile-rollup-wrapper,
.profile-rollup-summarized + .profile-rollup-summarized, table.files td,
table.files tr.up-tree {
border-top: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #eaecef" */
.subnav-bordered, .markdown-body h1, .markdown-body h2, .boxed-group-table th,
.boxed-group-table td, .capped-card h3, .capped-card > p, .select-menu-item,
table.files tr.up-tree, table.capped-list td, .pricing-table td {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-left: 1px solid #eaecef" */
.table-list-bordered .table-list-cell:first-child,
.empty-cell + .line-comments, .line-comments + .line-comments,
.pricing-table td + td {
border-left: 1px solid #343434 !important;
}
/* auto-generated rule for "border-right: 1px solid #eaecef" */
.table-list-bordered .table-list-cell:last-child, .header-search-scope,
.pricing-table td + td {
border-right: 1px solid #343434 !important;
}
/* auto-generated rule for "border-top: 1px solid #ddd" */
.new-issue-form, .merge-branch-manually, .migration-feature-list:before,
.migrate-org-roles-count, .manage-access-remove-footer, .url-box, .sms-or-app,
.access-form-wrapper, ul.search-results, div#article-form-container .preview,
#footer, h1.guide-title {
border-top: 1px solid #343434 !important;
}
/* auto-generated rule for "border-bottom: 1px solid #ddd" */
.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, .rule, hr, .tabnav,
.sub-nav, .libraries-jumbotron {
border-bottom: 1px solid #343434 !important;
}
/* auto-generated rule for "border-left: 1px solid #ddd" */
.sub-nav ul {
border-left: 1px solid #343434 !important;
}
/* auto-generated rule for "border-right: 1px solid #ddd" */
.migrate-org-roles-item, .markdown-format ol > li:before, ol > li:before {
border-right: 1px solid #343434 !important;
}
/* auto-generated rule for "border-top-color: rgba(27,31,35,.15)" */
.Popover-message--bottom-left:before, .Popover-message--bottom-right:before,
.Popover-message--bottom:before {
border-top-color: #343434 !important;
}
/* auto-generated rule for "border-bottom-color: rgba(27,31,35,.15)" */
.dropdown-menu:before,
.diffbar-range-menu .in-range:not(.navigation-focus):not(.is-range-selected),
.diffbar-range-menu .in-range:not([aria-selected=true]):not(.is-range-selected),
.site-header-nav .dropdown-menu:before {
border-bottom-color: #343434 !important;
}
/* auto-generated rule for "border-left-color: rgba(27,31,35,.15)" */
.Popover-message--right-bottom:before, .Popover-message--right-top:before,
.Popover-message--right:before {
border-left-color: #343434 !important;
}
/* auto-generated rule for "border-right-color: rgba(27,31,35,.15)" */
.Popover-message--left-bottom:before, .Popover-message--left-top:before,
.Popover-message--left:before {
border-right-color: #343434 !important;
}
/* auto-generated rule for "border-left-color: #f6f8fa" */
.dropdown-signed-commit .dropdown-menu-w:after {
border-left-color: #222 !important;
}
/* auto-generated rule for "border-left: solid 2px #e6ebf1" */
.deployments-timeline-item {
border-left: solid 2px #343434 !important;
}
/* auto-generated rule for "border-bottom: solid 2px #e6ebf1" */
.deployments-timeline {
border-bottom: solid 2px #343434 !important;
}
/* auto-generated rule for "border-bottom-color: #fff" */
.review-summary:after, .review-summary:before, .dropdown-menu:after,
.gist-banner, .site-header-nav .dropdown-menu:after {
border-bottom-color: #181818 !important;
}
/* auto-generated rule for "border-left-color: #fff" */
.Popover-message--right-bottom:after, .Popover-message--right-top:after,
.Popover-message--right:after,
.boxed-group .tabnav.heading li:first-child .selected {
border-left-color: #181818 !important;
}
/* auto-generated rule for "border-top-color: #fff" */
.Popover-message--bottom-left:after, .Popover-message--bottom-right:after,
.Popover-message--bottom:after, .select-menu-button.primary:after,
.enterprise-mode .dropdown-caret,
.site-header-nav .dropdown-button .enterprise-mode .dropdown-caret {
border-top-color: #181818 !important;
}
/* auto-generated rule for "border-right-color: #fff" */
.Popover-message--left-bottom:after, .Popover-message--left-top:after,
.Popover-message--left:after,
.new-discussion-timeline .composer .timeline-comment:after, .commit-form: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,.15)" */
.dropdown-menu-ne:before {
border-top: 8px solid #343434 !important;
}
/* auto-generated rule for "border-color: #2188ff" */
.form-control.focus, .form-control:focus, .form-select.focus,
.form-select:focus,
.targetable-comment-container-nojs.timeline-comment-group:target .timeline-comment,
.timeline-comment-group[aria-selected=true] .timeline-comment,
.timeline-comment[aria-selected=true] .pull-request-review-body-wrapper .timeline-comment-group .timeline-comment,
.plan-choice--experiment.plan-choice--blue.open,
.plan-choice--experiment.plan-choice--blue.selected, .project-column:focus,
.project-card:focus, .TenYearNav-year.blue {
border-color: /*[[base-color]]*/ !important;
}
/* auto-generated rule for "border-color: #dfe2e5 #dfe2e5 #fff" */
.select-menu-tabs .select-menu-tab-nav.selected,
.select-menu-tabs .select-menu-tab-nav[aria-selected=true],
.select-menu-tabs a.selected, .select-menu-tabs a[aria-selected=true] {
border-color: #484848 !important;
}
/* auto-generated rule for "box-shadow: 0 0 0 .2em rgba(3,102,214,.3)" */
.btn.focus, .btn:focus, .project-column:focus, .project-column.moving,
.project-card:focus, .project-card.moving, .btn-mktg:focus {
box-shadow: 0 0 0 .2em rgba(79, 140, 201, .4) !important;
box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .4) !important;
}
/* auto-generated rule for "box-shadow: 0 0 0 .2em #c8e1ff" */
.targetable-comment-container-nojs.timeline-comment-group:target .timeline-comment,
.timeline-comment-group[aria-selected=true] .timeline-comment,
.review-comment[aria-selected=true],
.targetable-comment-container-nojs.review-comment:target,
.targetable-comment-container-nojs.timeline-comment:target .review-summary,
.timeline-comment[aria-selected=true] .review-summary,
.timeline-comment[aria-selected=true] .pull-request-review-body-wrapper .timeline-comment-group .timeline-comment {
box-shadow: 0 0 0 .2em rgba(79, 140, 201, .4) !important;
box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .4) !important;
}
/* auto-generated rule for "box-shadow: 0 0 0 .2em rgba(203,36,49,.4)" */
.btn-danger:focus {
box-shadow: 0 0 0 .2em rgba(255, 68, 68, .4) !important;
}
/* auto-generated rule for "color: #333" */
.intgrs-lstng-item-header, .listgroup-item.disabled .listgroup-item-title,
.billing-plans .name, .session-authentication .header-logo,
.session-authentication .auth-form-header, .billing-section .section-content,
.lfs-data-icon.dark, .documentation-results a, .milestone-title-link a,
.org-name, .member-row, .reinstate-org-member .reinstate-title,
.stats-group-stat.no-link:hover .stat-number, .stat-number,
.org-user-notice-content strong, .manage-memberships-tabs-item:hover,
.diffstat-summary strong, .clone-url-button > .clone-url-link,
.clone-url-button.selected > .clone-url-link,
.clone-url-button.selected > .clone-url-link:hover,
.oauth-app-info-container dl.keys dd, .protected-branch-pusher,
.typeahead-result, div.article #article-platform-nav ul li.selected a,
ul.search-results li span.search-term, .minibutton, .btn, input, textarea,
input:focus, textarea:focus, div.search-form input:focus,
div.search-form button span, div.search-form .autocomplete-results a,
.markdown-format h1, .markdown-format h4, body, .button-nav, .button-nav li a,
div.content-header h6 span, h1, h1 span, h2, h2 span, .guide-section a p,
.text-gray-dark, .link-gray-dark, .text-emphasized, .Box-row-link,
.social-count, .form-control, .form-select, p.explain strong,
.Counter--gray-light, .menu-item .octicon, .tabnav-tab.selected,
.markdown-body span.frame span span, .site-header-nav-item:hover,
.site-header-nav-item.active, .sub-nav h2 a, .highlight-module .mega-octicon,
.octokit-language span, .headlines > li > a, .js-current .standalone a,
.sidebar-module .disable > a, .content .anchor, #markdown-toc li a {
color: #bebebe !important;
}
/* auto-generated rule for "color: #3c4146" */
.text-alpha, .text-beta, .text-delta, .text-gamma, h1, h2, h3, h4, h5,
.link-muted:hover, .text-black, .menu-item.selected,
.header-enterprise-version {
color: #bebebe !important;
}
/* auto-generated rule for "color: #444d56" */
.ellipsis-expander, .hidden-text-expander a, .subnav-search-context .btn,
.markdown-body kbd, .email-format .email-hidden-toggle a,
.commit .commit-title, .commit .commit-title a, .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,
.page-responsive .HeaderMenu-link, table.capped-list .octicon,
.illflow-item .illflow-item-heading, .action-card-syntax, .markdown-format kbd {
color: #afafaf !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, .vcard-username, .pulse-section, .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, #footer, .index-list h4, .index-list h5, .btn .counter,
.form-checkbox .note, .hfields .form-group dt label, h2.account, p.explain,
.counter, .tabnav-tab, .tabnav-extra, .subnav-item, .headlines > li,
.sidebar-module ul h3, .sidebar-module ul ul li, h2 span.step, .content dt,
.content .full-image:hover .octicon, .full-image:hover .mini-icon,
body > .footer li a {
color: #8e8e8e !important;
}
/* auto-generated rule for "color: #6a737d" */
.UnderlineNav-item:focus .UnderlineNav-octicon,
.UnderlineNav-item:hover .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 .select-menu-tab-nav, .select-menu-tabs a,
.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, ul.comparison-list > li.title,
.admin-options-block .disabled, .admin-options-block .disabled .note,
.check-annotation-notice .annotation-title, .code-list .full-path a,
.deployments-timeline-icon.is-inactive, .graphs .dir, .delete-topic-button,
.topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button,
.jump-to-suggestions-path .jump-to-octicon, .hook-item .description,
.hook-item.inactive .icon-for-inactive, .hook-item.mute .icon-for-mute,
.hook-item.pending .icon-for-pending,
.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,
.page-new-repo .form-checkbox.disabled,
.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,
.org-insights-cards [role=tab][aria-selected=true] .UnderlineNav-octicon,
.export-actions a, .pinned-repo-name, .vcard-detail .octicon,
.profile-timeline-card .issue-meta-section .octicon, .profile-rollup-toggle,
.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,
.team-listing .expand-nested-team,
.user-status-emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon,
.home-hero-signup .form-control-note,
.gist-snippet-meta .gist-count-links > li .octicon,
.gist-snippet-meta .extra-info,
.gist-quicksearch-results .gist-quicksearch-result-header,
.gist-quicksearch-results .select-menu-item h4,
.gist-quicksearch-results .select-menu-item span, .markdown-body del {
color: #8e8e8e !important;
}
/* auto-generated rule for "color: #959da5" */
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, .neutral-check,
.dashboard-notice .dismiss, .svg-tip, .page-new-repo .octicon-repo,
.news .alert .octicon, .news .alert .time, .news .alert .title .subtle,
.org-insights-cards .org-insights-card-legend, .team-member-list .invite-icon,
.team-member-list-avatar .octicon, .branch-infobar .muted-link .octicon,
.shelf-dismiss, .email-suggestion .octicon-mail,
.home-hero-signup .form-control-note .notice-highlight,
.gist-quicksearch-results .gist-quicksearch-no-results {
color: #757575 !important;
}
/* auto-generated rule for "color: #a3aab1" */
.blankslate-icon, .gh-header-number, ul.comparison-list > li .octicon,
.team-project-suggestion-number {
color: #5a5a5a !important;
}
/* auto-generated rule for "color: #c6cbd1" */
.subnav-search-icon, .locked-conversation .preview-tab,
.locked-conversation .write-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: #474747 !important;
}
/* auto-generated rule for "color: rgba(27,31,35,.85)" */
.boxed-group-warning, .intro-shelf {
color: rgba(230, 230, 230, .85) !important;
}
/* auto-generated rule for "color: hsla(0,0%,100%,.5)" */
.select-menu-item.navigation-focus.disabled, .select-menu-item:hover.disabled,
.select-menu-item[aria-selected=true].disabled {
color: hsla(0, 0%, 100%, .5) !important;
}
/* auto-generated rule for "color: hsla(0,0%,100%,.6)" */
.select-menu-item.navigation-focus.disabled .description,
.select-menu-item:hover.disabled .description,
.select-menu-item[aria-selected=true].disabled .description,
.jumbotron-codelines {
color: hsla(0, 0%, 100%, .6) !important;
}
/* auto-generated rule for "fill: #959da5" */
.activity-overview-percentage, .contrib-person .midlabel,
.donut-chart > .neutral, .org-insights-graph-canvas .axis text {
fill: #757575 !important;
}
/* auto-generated rule for "color: #0366d6" */
.template-previews .discussion-sidebar-heading:hover, .zeroclipboard-link, a,
.Box-row.navigation-focus .Box-row--drag-button, .Box-row-link:hover,
.btn-blue .Counter, .btn-outline, .btn-outline.selected .Counter,
.btn-outline:active .Counter, .btn-outline:hover .Counter,
[open] > .btn-outline .Counter, .social-count:hover, .btn-link,
.drag-and-drop-error-info a, a.tabnav-extra:hover, .pagination a,
.pagination em, .pagination span, .text-blue, .link-gray:hover,
.link-gray-dark:hover, .link-hover-blue:hover, .muted-link:hover,
a.branch-name, .ajax-pagination-form .ajax-pagination-btn, .btn-invisible,
.btn-invisible.selected, .btn-invisible.zeroclipboard-is-active,
.btn-invisible.zeroclipboard-is-hover, .btn-invisible:active,
.btn-invisible:focus, .btn-invisible:hover, .btn-octicon:hover,
.commit .commit-title .issue-link, .commit-link,
.timeline-commits .commit-message > code a:hover, .commit-id:hover,
.discussion-sidebar-toggle:hover, .milestone-name:hover,
.sidebar-assignee .assignee:hover, .participation a:hover,
.timeline-comment-action:focus, .timeline-comment-action:hover,
.discussion-item-link:hover, .discussion-item-entity:hover,
.discussion-item-ref-title .title-link:hover, .discussion-item-help:hover,
.steps li.current .octicon, .prose-diff .show-rich-diff,
.select-menu-action:hover, .select-menu-new-item-form .octicon,
.marketing-hero-octicon .octicon,
.intgrs-lstng-item-link:hover .intgrs-lstng-item-header,
.intgr-admin-link:hover .octicon, .listgroup-item:hover .link-small,
.rule-type-conditions, .code-list .blob-num a:hover, .coupon-icon,
.dashboard-notice .octicon-organization,
.dashboards-overview-cards .summary-stats .metric-1,
.repo-snipit:hover .repo-snipit-description,
.repo-snipit:hover .repo-snipit-name,
.exploregrid-item:hover .exploregrid-item-title,
.getting-started .link-text strong,
.scoped-search .form-control.focus .header-search-scope,
.issues-reset-query:hover, .milestone-title-link a:hover,
.milestone-description .expand-more, a.task-progress:hover,
.page-new-repo .license-info, .notifications .notifications-more > a,
.notifications-sso-prompt em, .notification-actions .btn-link:hover,
.oauth-application-whitelist .edit-link:hover,
.developer-app-item .developer-app-name:hover,