-
Notifications
You must be signed in to change notification settings - Fork 266
/
Copy paththemes.json
executable file
·2296 lines (2294 loc) · 60.6 KB
/
themes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Author": "toulefan",
"Description": "ChatGPT lookalike",
"FileName": "chatGPT.tmTheme",
"Title": "OpenAI"
},
{
"Author": "A.J. Bale",
"Description": "Easy to read earth tones on dark background. Especially deep support for HTML, CSS, JS, and Python",
"FileName": "Forest_Focus.tmTheme",
"Title": "Forest Focus"
},
{
"Author": "Jonathan Moore",
"Description": "Elegant clear text for coding, JSON and markdown on a dark blue background",
"FileName": "RefinedBlue.tmTheme",
"Title": "Refined Blue"
},
{
"Author": "Mike Gieson",
"Description": "Clean, intuitive and full-featured. Deep support for web stuff.",
"FileName": "Smoothy_7.tmTheme",
"Title": "Smoothy 7"
},
{
"Author": "Angrypygmy",
"Description": "Angrypygmy - Ease",
"FileName": "Ease.tmTheme",
"Title": "Ease"
},
{
"Author": "Marius Pop",
"Description": "Keep it simple.",
"FileName": "1Pastel.tmTheme",
"Title": "1-Pastel JavaScript"
},
{
"Author": "Robert Englund",
"Description": "A theme that has nice colors like nature in it!",
"FileName": "Nature.tmTheme",
"Title": "Nature"
},
{
"Author": "Robert Englund",
"Description": "A theme that has Ubuntu color scheme!",
"FileName": "UbuntuStyle.tmTheme",
"Title": "Ubuntu Style"
},
{
"Author": "Sean Ballinger",
"Description": "GitHub-inspired theme with bold keywords and brighter colors.",
"FileName": "GitHub_Bold.tmTheme",
"Title": "GitHub Bold"
},
{
"Author": "Kyle Wilcox",
"Description": "An adventure time based theme for sublime",
"FileName": "Adventure_Time.tmTheme",
"Title": "Adventure Time"
},
{
"Author": "Kary Foundation",
"Description": "The candy theme that makes your code a rainbow of joy!",
"FileName": "karyfoundation-light.tmTheme",
"Title": "Kary Foundation - Light"
},
{
"Author": "Kary Foundation",
"Description": "The candy theme that makes your code a rainbow of joy!",
"FileName": "karyfoundation-dark.tmTheme",
"Title": "Kary Foundation - Dark"
},
{
"Author": "Jack Doyle",
"Description": "A punchy yet simple dark neon theme.",
"FileName": "NeonDark.tmTheme",
"Title": "Neon Dark"
},
{
"Author": "@sayhellotovanessa",
"Description": "Based on the BBC show, Dr.Who.",
"FileName": "SisterTardis.tmTheme",
"Title": "Sister Tardis"
},
{
"Author": "irstacks",
"Description": "Theme developed primarily for front-end work with JS. Uses Sass. Shoulda joined the Marines instead.",
"FileName": "ArtSchool.tmTheme",
"Title": "Art School"
},
{
"Author": "Aron Wouters",
"Description": "Gedit look alike theme for sublime text",
"FileName": "Gedit.tmTheme",
"Title": "Gedit"
},
{
"Author": "lingTalfi",
"Description": "Simple bash theme with strong color contrasts for comments/finding/selection",
"FileName": "bashling.tmTheme",
"Title": "bashling"
},
{
"Author": "Fatih Kececi",
"Description": "A dark color scheme for Sublime Text. https://github.com/UnderlineWords/Agola-Color-Schemes",
"FileName": "AgolaDark.tmTheme",
"Title": "Agola Dark"
},
{
"Author": "unforswearing",
"Description": "A port of the Seafoam Pastel theme, originally for iTerm2. Easy on the eyes. https://github.com/unforswearing/seafoam-pastel-theme",
"FileName": "Seafoam-Pastel-Light.tmTheme",
"Title": "Seafoam Pastel Light"
},
{
"Author": "bertolinimarco",
"Description": "A more readable and low eyestrain focused Sublime Text color scheme. https://github.com/bertolinimarco/Seth-Color-Scheme",
"FileName": "seth.tmTheme",
"Title": "Seth"
},
{
"Author": "Youssef Haiti, youssman",
"Description": "A Sublime Text Color Theme suited for Material Design Theme. Original theme : Monokai Soft",
"FileName": "Monokai-Soft-MD.tmTheme",
"Title": "Monokai Soft MD"
},
{
"Author": "unforswearing",
"Description": "A port of the Seafoam Pastel theme, originally for iTerm2. Easy on the eyes. https://github.com/unforswearing/seafoam-pastel-theme",
"FileName": "Seafoam-Pastel-Dark.tmTheme",
"Title": "Seafoam Pastel Dark"
},
{
"Author": "Branko Tomić – klomontes",
"Description": "Custom dark theme for those who love purple. Contrast was adjusted to be easy for your eyes ad it makes your switch from Monokai easy.",
"FileName": "PurpleHaze.tmTheme",
"Title": "Purple Haze"
},
{
"Author": "seanwooj",
"Description": "Relax in the bask of the pastels. Feel more human while coding.",
"FileName": "feel_good.tmTheme",
"Title": "Feel Good"
},
{
"Author": "Stephen Kamenar",
"Description": "Goes great with techno music. https://github.com/farzher/Sublime-Text-Themes",
"FileName": "NeonGlow.tmTheme",
"Title": "Neon Glow"
},
{
"Author": "Ivan Kuzmin",
"Description": "The great and powerful Trixie theme",
"FileName": "Trixie.tmTheme",
"Title": "Trixie"
},
{
"Author": "Jared Christensen",
"Description": "A Dark theme focused on front end languages. Based off of the Bespin theme fond in Notepad ++",
"FileName": "Hammer.tmTheme",
"Title": "Hammer"
},
{
"Author": "Alex Braun",
"Description": "Henanigans theme for Sublime. Theme available for iPython Notebook, Stylish, iTerm and others.",
"FileName": "Henanigans.tmTheme",
"Title": "Henanigans"
},
{
"Author": "Daniel Hernandez",
"Description": "Black",
"FileName": "Daguiheso.tmTheme",
"Title": "Daguiheso"
},
{
"Author": "Ritashugisha",
"Description": "To be used with Spacegray UI",
"FileName": "Anarchist.tmTheme",
"Title": "Anarchist"
},
{
"Author": "Ritashugisha",
"Description": "To be used with Spacegray Eighties UI",
"FileName": "AnarchistEighties.tmTheme",
"Title": "Anarchist Eighties"
},
{
"Author": "Zayn Ali",
"Description": "https://github.com/zaynali53/golden-dragon",
"FileName": "GoldenDragon.tmTheme",
"Title": "Golden Dragon"
},
{
"Author": "Wes Cravens",
"Description": "A theme based on the riot.js guide. See https://muut.com/riotjs/guide/",
"FileName": "Riot.tmTheme",
"Title": "Riot"
},
{
"Author": "Devin Rhode",
"Description": "Inverse all colors of Sublime's standard Monokai",
"FileName": "monokai-inverse.tmTheme",
"Title": "Monokai inversed"
},
{
"Author": "Yucheng Tu",
"Description": "A purrety dark color scheme with contrast based on Aurora. See https://github.com/Pirolf/Colorsublime-Themes.",
"FileName": "Purrora.tmTheme",
"Title": "Purrora"
},
{
"Author": "Mark Michos",
"Description": "A color scheme for dark Sublime Text themes.",
"FileName": "1337.tmTheme",
"Title": "1337"
},
{
"Author": "Neil Cresswell",
"Description": "Easy on eyes dark theme with accented comments and GitGutter support. See https://github.com/NeilCresswell/themes for other IDEs.",
"FileName": "DarkRoomNormal.tmTheme",
"Title": "Dark Room (Normal)"
},
{
"Author": "Cipriani Mike",
"Description": "",
"FileName": "dropin.tmTheme",
"Title": "Dropin"
},
{
"Author": "Neil Cresswell",
"Description": "Easy on eyes dark theme with accented comments and GitGutter support. See https://github.com/NeilCresswell/themes for other IDEs.",
"FileName": "DarkRoomContrast.tmTheme",
"Title": "Dark Room (Contrast)"
},
{
"Author": "Zeno Rocha and Kaushalya Mandaliya",
"Description": "Just Changed background color and lineHighlight color in Dracula Theme (Which is developed by Zeno Rocha). For more info: https://github.com/krman009/Dark-Dracula-Theme",
"FileName": "Dark-Dracula.tmTheme",
"Title": "Dark-Dracula"
},
{
"Author": "Omar Mashaal",
"Description": "https://github.com/mashaal/wild-cherry",
"FileName": "wild-cherry.tmTheme",
"Title": "Wild Cherry"
},
{
"Author": "George Kampolis",
"Description": "A dark theme making heavy use of color-coding (the author considers comments important).",
"FileName": "Array.tmTheme",
"Title": "Array"
},
{
"Author": "Dave Luke Jr",
"Description": "If Frank were still with us today, he would code using this theme and this theme only",
"FileName": "Frank_Sinatra.tmTheme",
"Title": "Frank Sinatra"
},
{
"Author": "Nhat Nguyen",
"Description": "Dark and easy on the eyes theme",
"FileName": "Bittersweet.tmTheme",
"Title": "Bittersweet"
},
{
"Author": "Alex Dunmow",
"Description": "Dark theme, with blues & purples",
"FileName": "blockninja.tmTheme",
"Title": "BlockNinja"
},
{
"Author": "Pixel Lab",
"Description": "A simple dark theme mostly derived from Soda.",
"FileName": "Flatland_Dark.tmTheme",
"Title": "Flatland Dark"
},
{
"Author": "Pixel Lab",
"Description": "Flatland Dark theme with a pure black background.",
"FileName": "Flatland_Black.tmTheme",
"Title": "Flatland Black"
},
{
"Author": "Pixel Lab",
"Description": "Monokai theme with Flatland Dark's background color.",
"FileName": "Flatland_Monokai.tmTheme",
"Title": "Flatland Monokai"
},
{
"Author": "Justin Loudermilk",
"Description": "A bluish monokai.",
"FileName": "IridiumStar.tmTheme",
"Title": "IridiumStar"
},
{
"Author": "Muukii",
"Description": "Inspired by monokai",
"FileName": "Muukii.tmTheme",
"Title": "Muukii"
},
{
"Author": "Todd Miller",
"Description": "Dark theme with an earthy flair. Full theme available at https://github.com/Toddses/coffee/",
"FileName": "Coffee_Dark_Roast.tmTheme",
"Title": "Coffee Dark Roast"
},
{
"Author": "Jan T. Sott",
"Description": "Bright theme inspired by Dutch artist Erosie",
"FileName": "3024_Day.tmTheme",
"Title": "3024 (Day)"
},
{
"Author": "Jan T. Sott",
"Description": "Dark theme inspired by Dutch artist Erosie",
"FileName": "3024_Night.tmTheme",
"Title": "3024 (Night)"
},
{
"Author": "Ryan Burgess",
"Description": "",
"FileName": "CandyLand.tmTheme",
"Title": "Candy Land"
},
{
"Author": "Ryan Burgess",
"Description": "",
"FileName": "ToyMachine.tmTheme",
"Title": "Toy Machine"
},
{
"Author": "Ofer Reichman",
"Description": "Pearls and the Spanish dancer",
"FileName": "Abyss.tmTheme",
"Title": "Abyss"
},
{
"Author": "",
"Description": "",
"FileName": "Active4D.tmTheme",
"Title": "Active4D"
},
{
"Author": "David Heinemeier Hansson",
"Description": "",
"FileName": "All_Hallows_Eve.tmTheme",
"Title": "All Hallows Eve"
},
{
"Author": "Amy",
"Description": "",
"FileName": "Amy.tmTheme",
"Title": "Amy"
},
{
"Author": "Antonia Ciocodeica",
"Description": "",
"FileName": "ant.tmTheme",
"Title": "Ant"
},
{
"Author": "Palmer Oliveira",
"Description": "A dark theme inspired by an Aurora Borealis.",
"FileName": "Aurora.tmTheme",
"Title": "Aurora"
},
{
"Author": "Blackboard",
"Description": "",
"FileName": "Blackboard.tmTheme",
"Title": "Blackboard"
},
{
"Author": "Ed Heltze4l - Ginfuru",
"Description": "A Sublime Text color scheme that is bright and dark",
"FileName": "BlackRain.tmTheme",
"Title": "BlackRain"
},
{
"Author": "",
"Description": "",
"FileName": "BlueDawn.tmTheme",
"Title": "BlueDawn"
},
{
"Author": "",
"Description": "",
"FileName": "BlueLover.tmTheme",
"Title": "BlueLover"
},
{
"Author": "Martin Jagusch",
"Description": "Colorful, dark color scheme based on the excellent Jellybeans color scheme for Vim.",
"FileName": "Boron.tmTheme",
"Title": "Boron"
},
{
"Author": "",
"Description": "",
"FileName": "BoxUK.tmTheme",
"Title": "BoxUK"
},
{
"Author": "Thomas Aylott",
"Description": "",
"FileName": "Brilliance_Black.tmTheme",
"Title": "Brilliance Black"
},
{
"Author": "Thomas Aylott",
"Description": "",
"FileName": "Brilliance_Dull.tmTheme",
"Title": "Brilliance Dull"
},
{
"Author": "Ofer Reichman",
"Description": "A blend of clarity and rich warm colors",
"FileName": "Brunette.tmTheme",
"Title": "Brunette"
},
{
"Author": "",
"Description": "",
"FileName": "Carbonight.tmTheme",
"Title": "Carbonight"
},
{
"Author": "",
"Description": "",
"FileName": "CarbonightBlue.tmTheme",
"Title": "CarbonightBlue"
},
{
"Author": "",
"Description": "",
"FileName": "Carbonnight.tmTheme",
"Title": "Carbonnight"
},
{
"Author": "Ludvig Widman",
"Description": "Chocolate brown theme",
"FileName": "Choco.tmTheme",
"Title": "Choco"
},
{
"Author": "Austin Cummings",
"Description": "",
"FileName": "Chrome_DevTools.tmTheme",
"Title": "Chrome DevTools"
},
{
"Author": "",
"Description": "",
"FileName": "Clouds.tmTheme",
"Title": "Clouds"
},
{
"Author": "",
"Description": "",
"FileName": "Clouds_Midnight.tmTheme",
"Title": "Clouds Midnight"
},
{
"Author": "Jacob Rus",
"Description": "",
"FileName": "Cobalt.tmTheme",
"Title": "Cobalt"
},
{
"Author": "Blake Stephens",
"Description": "Modern evolution of the old CodeWarrior by MetroWorks theme",
"FileName": "CodeWarrior.tmTheme",
"Title": "CodeWarrior"
},
{
"Author": "",
"Description": "",
"FileName": "Colonoscopy.tmTheme",
"Title": "Colonoscopy"
},
{
"Author": "Todd Budnikas",
"Description": "",
"FileName": "Dark_Krystal.tmTheme",
"Title": "Dark Krystal"
},
{
"Author": "",
"Description": "",
"FileName": "Darkside.tmTheme",
"Title": "Darkside"
},
{
"Author": "Sascha Wolf",
"Description": "The Darkside theme with a lighter selection for better readablility.",
"FileName": "Darkside_light_selection.tmTheme",
"Title": "Darkside (light selection)"
},
{
"Author": "David Powers",
"Description": "",
"FileName": "Dawn.tmTheme",
"Title": "Dawn"
},
{
"Author": "JD Isaacks",
"Description": "",
"FileName": "deep_blue_see.tmTheme",
"Title": "Deep Blue See"
},
{
"Author": "uonick",
"Description": "github.com/uonick",
"FileName": "dimmed.tmTheme",
"Title": "Dimmed"
},
{
"Author": "uonick",
"Description": "github.com/uonick",
"FileName": "dimmed-monokai.tmTheme",
"Title": "Dimmed-Monokai"
},
{
"Author": "uonick",
"Description": "github.com/uonick",
"FileName": "dimmed-monokai-no-contrast.tmTheme",
"Title": "Dimmed-Monokai-NoContrast"
},
{
"Author": "uonick",
"Description": "github.com/uonick",
"FileName": "dimmed-night.tmTheme",
"Title": "Dimmed-Night"
},
{
"Author": "uonick",
"Description": "github.com/uonick",
"FileName": "dimmed-storm.tmTheme",
"Title": "Dimmed-Storm"
},
{
"Author": "zenorocha",
"Description": "https://github.com/zenorocha/dracula-theme",
"FileName": "Dracula.tmTheme",
"Title": "Dracula"
},
{
"Author": "",
"Description": "",
"FileName": "Dreamweaver.tmTheme",
"Title": "Dreamweaver"
},
{
"Author": "Ofer Reichman",
"Description": "Have you hugged a tree today?",
"FileName": "Druid.tmTheme",
"Title": "Druid"
},
{
"Author": "",
"Description": "",
"FileName": "Earthsong.tmTheme",
"Title": "Earthsong"
},
{
"Author": "Mattia Astorino",
"Description": "Preap theme released with Preap Dark UI (https://github.com/equinusocio/preap)",
"FileName": "preap.tmTheme",
"Title": "Preap"
},
{
"Author": "",
"Description": "",
"FileName": "earthsong-light.tmTheme",
"Title": "EarthsongLight"
},
{
"Author": "dncrews",
"Description": "A dark theme full of greens and cool colors.",
"FileName": "Easyballs.tmTheme",
"Title": "Easyballs"
},
{
"Author": "Eiffel",
"Description": "",
"FileName": "Eiffel.tmTheme",
"Title": "Eiffel"
},
{
"Author": "Mims H. Wright",
"Description": "An delicious, aubergine color theme.",
"FileName": "EggplantParm.tmTheme",
"Title": "Eggplant Parm"
},
{
"Author": "Chris Thomas",
"Description": "",
"FileName": "Espresso_Libre.tmTheme",
"Title": "Espresso Libre"
},
{
"Author": "Michael Obrocnik (mbixby)",
"Description": "",
"FileName": "Facebook.tmTheme",
"Title": "Facebook"
},
{
"Author": "Mark Herpich (Mark Michos)",
"Description": "",
"FileName": "FireCode.tmTheme",
"Title": "FireCode"
},
{
"Author": "ART-ifact Dev | Jeremias Arnstadt",
"Description": "Color Scheme of the Sublime Flatgrammer Theme",
"FileName": "Flatgrammer.tmTheme",
"Title": "Flatgrammer"
},
{
"Author": "",
"Description": "",
"FileName": "FreshCut.tmTheme",
"Title": "FreshCut"
},
{
"Author": "",
"Description": "",
"FileName": "Frontier.tmTheme",
"Title": "Frontier"
},
{
"Author": "Felipe Martinin",
"Description": "Cool your mind",
"FileName": "Frozen.tmTheme",
"Title": "Frozen"
},
{
"Author": "Twiebie",
"Description": "An easy to read dark color scheme for Sublime Text.",
"FileName": "Future_Funk.tmTheme",
"Title": "Future Funk"
},
{
"Author": "",
"Description": "",
"FileName": "Github.tmTheme",
"Title": "Github"
},
{
"Author": "",
"Description": "",
"FileName": "Gloom.tmTheme",
"Title": "Gloom"
},
{
"Author": "",
"Description": "",
"FileName": "Glowfish.tmTheme",
"Title": "Glowfish"
},
{
"Author": "",
"Description": "",
"FileName": "Goldfish.tmTheme",
"Title": "Goldfish"
},
{
"Author": "",
"Description": "",
"FileName": "Grunge.tmTheme",
"Title": "Grunge"
},
{
"Author": "",
"Description": "",
"FileName": "HalfLife.tmTheme",
"Title": "HalfLife"
},
{
"Author": "Jan T. Sott",
"Description": "Color scheme inspired by the art of Charley Harper (1922-2007)",
"FileName": "Harper.tmTheme",
"Title": "Harper"
},
{
"Author": "",
"Description": "",
"FileName": "Hyrule.tmTheme",
"Title": "Hyrule"
},
{
"Author": "Domenico Carbotta",
"Description": "",
"FileName": "IDLE.tmTheme",
"Title": "IDLE"
},
{
"Author": "",
"Description": "",
"FileName": "Iceberg.tmTheme",
"Title": "Iceberg"
},
{
"Author": "@codex8",
"Description": "ILM techno solutions",
"FileName": "ILM.tmTheme",
"Title": "ILM"
},
{
"Author": "@codex8",
"Description": "ILM techno solutions",
"FileName": "ILMHackers.tmTheme",
"Title": "ILM Hackers"
},
{
"Author": "@codex8",
"Description": "ILM techno solutions",
"FileName": "ILMLight.tmTheme",
"Title": "ILM Light"
},
{
"Author": "@codex8",
"Description": "ILM techno solutions",
"FileName": "ILMShell.tmTheme",
"Title": "ILM Shell"
},
{
"Author": "@codex8",
"Description": "ILM techno solutions",
"FileName": "ILMStream.tmTheme",
"Title": "ILM Stream"
},
{
"Author": "Todd Werth",
"Description": "",
"FileName": "IR_Black.tmTheme",
"Title": "IR_Black"
},
{
"Author": "",
"Description": "",
"FileName": "Juicy.tmTheme",
"Title": "Juicy"
},
{
"Author": "kaneofawesome",
"Description": "High contrast - dark with bright highlights",
"FileName": "Kane.tmTheme",
"Title": "Kane"
},
{
"Author": "Jan T. Sott",
"Description": "Color scheme inspired by Mount Kimbie's second album",
"FileName": "Kimbie_dark.tmTheme",
"Title": "Kimbie (dark)"
},
{
"Author": "Jan T. Sott",
"Description": "Color scheme inspired by Mount Kimbie's second album",
"FileName": "Kimbie_light.tmTheme",
"Title": "Kimbie (light)"
},
{
"Author": "Enrico Friede",
"Description": "A dark, relaxing, simple color scheme",
"FileName": "KoralGreen.tmTheme",
"Title": "KoralGreen"
},
{
"Author": "Enrico Friede",
"Description": "A dark, relaxing, simple color scheme",
"FileName": "KoralGreen2.tmTheme",
"Title": "KoralGreen2"
},
{
"Author": "Enrico Friede",
"Description": "A dark, relaxing, simple color scheme",
"FileName": "Monokai_dimmed_76.tmTheme",
"Title": "Monokai dimmed 76"
},
{
"Author": "Domenico Carbotta",
"Description": "",
"FileName": "LAZY.tmTheme",
"Title": "LAZY"
},
{
"Author": "",
"Description": "",
"FileName": "Laravel.tmTheme",
"Title": "Laravel"
},
{
"Author": "",
"Description": "",
"FileName": "LastNight.tmTheme",
"Title": "LastNight"
},
{
"Author": "YemSalat",
"Description": "A dark theme for better readablility",
"FileName": "Late_Night.tmTheme",
"Title": "Late Night"
},
{
"Author": "",
"Description": "",
"FileName": "Lava.tmTheme",
"Title": "Lava"
},
{
"Author": "",
"Description": "",
"FileName": "Lavender.tmTheme",
"Title": "Lavender"
},
{
"Author": "Allan Odgaard",
"Description": "",
"FileName": "MagicWB_Amiga.tmTheme",
"Title": "MagicWB Amiga"
},
{
"Author": "Bernardo Anderson",
"Description": "A modified Material theme based on equinusocio's original",
"FileName": "Material.tmTheme",
"Title": "Material"
},
{
"Author": "Created by DeeJayy, http://deejayy.hu/",
"Description": "",
"FileName": "Mcedit.tmTheme",
"Title": "Mcedit"
},
{
"Author": "",
"Description": "",
"FileName": "Mellow.tmTheme",
"Title": "Mellow"
},
{
"Author": "",
"Description": "",
"FileName": "Merbivore.tmTheme",
"Title": "Merbivore"
},
{
"Author": "",
"Description": "",
"FileName": "Merbivore_Soft.tmTheme",
"Title": "Merbivore Soft"
},
{
"Author": "Johan Tique",
"Description": "Easy contrast, best scheme for your LCD monitor based on Monokai",
"FileName": "monokai_fresh.tmTheme",
"Title": "Monokai Fresh"
},
{
"Author": "",
"Description": "",
"FileName": "Monokai.tmTheme",
"Title": "Monokai"
},
{
"Author": "CalebAmesbury.com",
"Description": "A softer more enjoyable version of the useful classic, Monokai.",
"FileName": "Monokai-Soft.tmTheme",
"Title": "Monokai-soft"
},
{
"Author": "Rafal Lindemann",
"Description": "",
"FileName": "Mustard.tmTheme",
"Title": "Mustard"
},
{
"Author": "",
"Description": "",
"FileName": "NaturalContrast.tmTheme",
"Title": "NaturalContrast"
},
{
"Author": "Josh Trujillo",
"Description": "",
"FileName": "Neon_Kush.tmTheme",
"Title": "Neon Kush"
},
{
"Author": "",
"Description": "",
"FileName": "NetBeans.tmTheme",
"Title": "NetBeans"
},
{
"Author": "Alvaro Carmona",
"Description": "This is an excellent and original theme, inspired by the frozen north polar passage and tundra",
"FileName": "NorthPole.tmTheme",
"Title": "North Pole"
},
{
"Author": "James Brooks",
"Description": "",
"FileName": "Oblivion.tmTheme",
"Title": "Oblivion"
},
{
"Author": "Jan T. Sott",
"Description": "Color scheme inspired by the art of Rubens LP ",
"FileName": "Paraiso_dark.tmTheme",
"Title": "Paraiso (dark)"
},
{
"Author": "Jan T. Sott",
"Description": "Color scheme inspired by the art of Rubens LP ",
"FileName": "Paraiso_light.tmTheme",
"Title": "Paraiso (light)"
},
{
"Author": "Mats Persson",
"Description": "",
"FileName": "Pastels_on_Dark.tmTheme",
"Title": "Pastels on Dark"
},
{
"Author": "",
"Description": "",
"FileName": "Patriot.tmTheme",
"Title": "Patriot"
},
{
"Author": "",
"Description": "",
"FileName": "Peacock.tmTheme",
"Title": "Peacock"
},
{
"Author": "",
"Description": "",
"FileName": "Potpourri.tmTheme",
"Title": "Potpourri"
},
{
"Author": "Poyeyo",
"Description": "",
"FileName": "Poyeyo.tmTheme",
"Title": "Poyeyo"
},
{
"Author": "Poyeyo",
"Description": "",
"FileName": "Poyeyo_Blue.tmTheme",
"Title": "Poyeyo Blue"
},
{
"Author": "sam0hack",
"Description": "light gray background theme",
"FileName": "Rebecca.tmTheme",
"Title": "Rebecca gray"
},
{
"Author": "sam0hach",
"Description": "Dark rebecca theme",
"FileName": "Rebecca-dark.tmTheme",
"Title": "Rebecca dark"
},
{
"Author": "sam0hack",
"Description": "mint theme",
"FileName": "Rebecca-mint.tmTheme",
"Title": "Rebecca mint"
},
{
"Author": "sam0hack",
"Description": "sky theme",
"FileName": "Rebecca-sky.tmTheme",
"Title": "Rebecca sky"
},
{
"Author": "",
"Description": "",
"FileName": "Revelation.tmTheme",
"Title": "Revelation"
},
{
"Author": "JD Isaacks",
"Description": "",
"FileName": "Seahorse.tmTheme",
"Title": "Seahorse"
},
{
"Author": "",
"Description": "",
"FileName": "Slime.tmTheme",
"Title": "Slime"
},
{