-
Notifications
You must be signed in to change notification settings - Fork 86
/
themes.json
2746 lines (2746 loc) · 87.7 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
[
{
"file": "themes/1984_dark.conf",
"is_dark": true,
"name": "1984 Dark",
"num_settings": 23
},
{
"file": "themes/1984_light.conf",
"name": "1984 Light",
"num_settings": 23
},
{
"file": "themes/1984_orwellian.conf",
"is_dark": true,
"name": "1984 Orwellian",
"num_settings": 23
},
{
"file": "themes/3024_Day.conf",
"name": "3024 Day",
"num_settings": 21
},
{
"file": "themes/3024_Night.conf",
"is_dark": true,
"name": "3024 Night",
"num_settings": 21
},
{
"blurb": "Based on the VGA ANSI palette on IBM PC DOS & OS/2 sytems.",
"file": "themes/ANSI-87.conf",
"is_dark": true,
"name": "ANSI 1987",
"num_settings": 22
},
{
"blurb": "A description of this theme. This is the default theme for manjaro community eddition of i3.",
"file": "themes/Adapta_Nokto_Maia.conf",
"is_dark": true,
"name": "Adapta Nokto Maia",
"num_settings": 39
},
{
"file": "themes/AdventureTime.conf",
"is_dark": true,
"name": "Adventure Time",
"num_settings": 21
},
{
"author": "Emil L\u00f6fquist (https://github.com/ewal)",
"blurb": "Adwaita dark - based on https://github.com/Mofiqul/adwaita.nvim",
"file": "themes/adwaita_dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Adwaita dark",
"num_settings": 35,
"upstream": "https://github.com/ewal/kitty-adwaita/blob/main/adwaita_dark.conf"
},
{
"author": "Emil L\u00f6fquist (https://github.com/ewal)",
"blurb": "Adwaita darker - based on https://github.com/Mofiqul/adwaita.nvim",
"file": "themes/adwaita_darker.conf",
"is_dark": true,
"license": "MIT",
"name": "Adwaita darker",
"num_settings": 35,
"upstream": "https://github.com/ewal/kitty-adwaita/blob/main/adwaita_darker.conf"
},
{
"author": "Emil L\u00f6fquist (https://github.com/ewal)",
"blurb": "Adwaita light - based on https://github.com/Mofiqul/adwaita.nvim",
"file": "themes/adwaita_light.conf",
"license": "MIT",
"name": "Adwaita light",
"num_settings": 35,
"upstream": "https://github.com/ewal/kitty-adwaita/blob/main/adwaita_light.conf"
},
{
"file": "themes/Afterglow.conf",
"is_dark": true,
"name": "Afterglow",
"num_settings": 21
},
{
"author": "Nikita Prokopov",
"blurb": "A light color scheme adapted from Alabaster for the kitty terminal.",
"file": "themes/Alabaster.conf",
"license": "MIT",
"name": "Alabaster",
"num_settings": 30,
"upstream": "https://raw.githubusercontent.com/anmolmathias/kitty-alabaster/master/alabaster.conf"
},
{
"author": "Nikita Prokopov",
"blurb": "A dark color scheme adapted from Alabaster for the kitty terminal.",
"file": "themes/Alabaster_Dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Alabaster Dark",
"num_settings": 30,
"upstream": "https://raw.githubusercontent.com/anmolmathias/kitty-alabaster/master/alabaster-dark.conf"
},
{
"file": "themes/AlienBlood.conf",
"is_dark": true,
"name": "Alien Blood",
"num_settings": 21
},
{
"file": "themes/Alucard.conf",
"is_dark": true,
"name": "Alucard",
"num_settings": 21
},
{
"file": "themes/Apprentice.conf",
"is_dark": true,
"name": "Apprentice",
"num_settings": 22
},
{
"author": "Detective Pikachu",
"blurb": "A simple vibrant dark theme Kitty terminal.",
"file": "themes/Aquarium_Dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Aquarium Dark",
"num_settings": 22,
"upstream": "https://github.com/FrenzyExists/aquarium-vim/raw/develop/extras/kitty_aquarium_dark.conf"
},
{
"author": "ragdoll2iguess",
"blurb": "A simple vibrant dark theme Kitty terminal. Old BG -> #E6E6F1 #E1E3F2",
"file": "themes/Aquarium_Light.conf",
"license": "MIT",
"name": "Aquarium Light",
"num_settings": 21,
"upstream": "https://github.com/FrenzyExists/aquarium-vim/raw/develop/extras/kitty_aquarium_light.conf"
},
{
"file": "themes/Argonaut.conf",
"is_dark": true,
"name": "Argonaut",
"num_settings": 21
},
{
"file": "themes/Arthur.conf",
"is_dark": true,
"name": "Arthur",
"num_settings": 21
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "A violet-ish palette; not for the claustrophobic.",
"file": "themes/atelier-cave-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Cave Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-cave-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "A yellow-ish palette with warm brown greyed colors for the background. A welcoming, soothing friendly but also bright, colorscheme.",
"file": "themes/atelier-dune-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Dune Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-dune-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "A yellow-green-ish palette with desaturated colors and brown greyed colors for the background. A bit of a poisonous colorscheme, be aware of the crocodiles \u2026, they\u2019re hiding in there.",
"file": "themes/atelier-estuary-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Estuary Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-estuary-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Base color for Forest is orange, and the idea is to have brownish colors for the background, not unlike a colorscheme like \u201cBirds of Paradise\u201d, but a bit muddier on the browns, less red and more greyed out, like clay.",
"file": "themes/atelier-forest-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Forest Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-forest-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Base color for Heath is magenta, and here the background-colors have these cool-red colors for the background, but then obviously toned down quite a bit \u2026.",
"file": "themes/atelier-heath-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Heath Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-heath-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Cool colorscheme for the base color for Lakeside is blue, which means bluish colors for the background.",
"file": "themes/atelier-lakeside-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Lakeside Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-lakeside-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Base color for Plateau is red, and here the background-colors have these chocolate brown/grey colors for the background, while the \u201ccolor-wheel colors\u201d are quite desaturated. A warm palette; no real green in here.",
"file": "themes/atelier-plateau-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Plateau Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-plateau-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Base color for Savanna is green, it has greenish colors for the background. \u201cColor-wheel colors\u201d are desaturated considerably, giving this colorscheme a rather understated appeal and, dear I say it, a \u2018natural\u2019 look and feel.",
"file": "themes/atelier-savanna-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Savanna Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-savanna-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Base color for Seaside is green: greenish colors for the background. Very saturated color-palette; comes popping at you.",
"file": "themes/atelier-seaside-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Seaside Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-seaside-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Purple-ish otherworldly colorscheme",
"file": "themes/atelier-sulphurpool-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Atelier Sulphurpool Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/AtelierSchemes-kitty/blob/main/themes/atelier-sulphurpool-dark.conf"
},
{
"file": "themes/Atom.conf",
"is_dark": true,
"name": "Atom",
"num_settings": 21
},
{
"file": "themes/AtomOneLight.conf",
"name": "Atom One Light",
"num_settings": 21
},
{
"file": "themes/ayu.conf",
"is_dark": true,
"name": "Ayu",
"num_settings": 21
},
{
"file": "themes/ayu_light.conf",
"name": "Ayu Light",
"num_settings": 21
},
{
"file": "themes/ayu_mirage.conf",
"is_dark": true,
"name": "Ayu Mirage",
"num_settings": 21
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Duotone theme | cool cave red - yellow ochre",
"file": "themes/base2tone-cave-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Cave Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-cave-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Duotone theme | brown umber - desert orange",
"file": "themes/base2tone-desert-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Desert Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-desert-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Duotone theme | bright blue - bright turquoise",
"file": "themes/base2tone-drawbridge-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Drawbridge Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-drawbridge-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Duotone theme | brown earth - brown ochre/khaki",
"file": "themes/base2tone-earth-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Earth Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-earth-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "Default duotone theme | purple - orange",
"file": "themes/base2tone-evening-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Evening Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-evening-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | teal/turqoise - bright field green",
"file": "themes/base2tone-field-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Field Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-field-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | muted forest green - light yellow-green",
"file": "themes/base2tone-forest-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Forest Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-forest-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | lime garden green - muted orange",
"file": "themes/base2tone-garden-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Garden Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-garden-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | violet heath magenta - siena brown orange",
"file": "themes/base2tone-heath-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Heath Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-heath-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | lime lake green - muted orange",
"file": "themes/base2tone-lake-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Lake Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-lake-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | blue lavender violet - magenta",
"file": "themes/base2tone-lavender-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Lavender Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-lavender-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | blue violet - light sky blue",
"file": "themes/base2tone-mall-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Mall Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-mall-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | slate blue - light lime green",
"file": "themes/base2tone-meadow-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Meadow Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-meadow-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | warm blue - yellow brown ochre",
"file": "themes/base2tone-morning-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Morning Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-morning-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | rosy brown - coral salmon orange",
"file": "themes/base2tone-motel-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Motel Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-motel-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | violet - salmon orange",
"file": "themes/base2tone-pool-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Pool Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-pool-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | muted violet - light orange",
"file": "themes/base2tone-porch-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Porch Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-porch-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | slate sea blue - medium sea green",
"file": "themes/base2tone-sea-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Sea Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-sea-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | warm space blue - medium orange",
"file": "themes/base2tone-space-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Space Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-space-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "duotone theme | warm blue - bright pink",
"file": "themes/base2tone-suburb-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base2Tone Suburb Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-suburb-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-classic-d-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Classic_D Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-classic-d-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-classic-i-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Classic_I Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-classic-i-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-classic-p-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Classic_P Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-classic-p-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-classic-s-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Classic_S Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-classic-s-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-classic-w-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Classic_W Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-classic-w-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-modern-n-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Modern_N Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-modern-n-dark.conf"
},
{
"author": "Bram de Haan (https://github.com/atelierbram)",
"blurb": "theme with limited color palette",
"file": "themes/base4tone-modern-w-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Base4Tone_Modern_W Dark",
"num_settings": 41,
"upstream": "https://github.com/atelierbram/Base4Tone-kitty/blob/main/themes/base4tone-modern-w-dark.conf"
},
{
"file": "themes/Batman.conf",
"is_dark": true,
"name": "Batman",
"num_settings": 21
},
{
"file": "themes/Belafonte_Day.conf",
"name": "Belafonte Day",
"num_settings": 21
},
{
"file": "themes/Belafonte_Night.conf",
"is_dark": true,
"name": "Belafonte Night",
"num_settings": 21
},
{
"file": "themes/BirdsOfParadise.conf",
"is_dark": true,
"name": "Birds Of Paradise",
"num_settings": 21
},
{
"file": "themes/BlackMetal.conf",
"is_dark": true,
"name": "Black Metal",
"num_settings": 25
},
{
"file": "themes/Blazer.conf",
"is_dark": true,
"name": "Blazer",
"num_settings": 21
},
{
"author": "Umut Topuzo\u011flu",
"blurb": "A fancy and sophisticated dark designer color theme",
"file": "themes/BlulocoDark.conf",
"is_dark": true,
"license": "LGPL-3.0",
"name": "Bluloco Dark",
"num_settings": 31,
"upstream": "https://github.com/uloco/bluloco.nvim/blob/main/terminal-themes/kitty/BlulocoDark.conf"
},
{
"author": "Umut Topuzo\u011flu",
"blurb": "A fancy and sophisticated light designer color theme",
"file": "themes/BlulocoLight.conf",
"license": "LGPL-3.0",
"name": "Bluloco Light",
"num_settings": 31,
"upstream": "https://github.com/uloco/bluloco.nvim/blob/main/terminal-themes/kitty/BlulocoLight.conf"
},
{
"file": "themes/Borland.conf",
"name": "Borland",
"num_settings": 21
},
{
"author": "D3vil0p3r",
"blurb": "Hack The Box inspired colorscheme.",
"file": "themes/Box.conf",
"is_dark": true,
"license": "GPLv3",
"name": "Box",
"num_settings": 41
},
{
"author": "b3yc0d3 <b3yc0d3@dnmx.org>",
"blurb": "Breath2 Theme for Kitty Terminal",
"file": "themes/breath2.conf",
"is_dark": true,
"license": "MIT",
"name": "Breath2",
"num_settings": 24,
"upstream": "https://raw.githubusercontent.com/b3yc0d3/my-kitty-themes/main/themes/breath2.conf"
},
{
"file": "themes/Bright_Lights.conf",
"is_dark": true,
"name": "Bright Lights",
"num_settings": 21
},
{
"file": "themes/Broadcast.conf",
"is_dark": true,
"name": "Broadcast",
"num_settings": 21
},
{
"file": "themes/Brogrammer.conf",
"is_dark": true,
"name": "Brogrammer",
"num_settings": 21
},
{
"file": "themes/C64.conf",
"name": "C64",
"num_settings": 21
},
{
"file": "themes/CLRS.conf",
"name": "CLRS",
"num_settings": 21
},
{
"author": "Microsoft",
"blurb": "The default theme of Microsoft's terminals, including Windows Terminal and cmd.",
"file": "themes/Campbell.conf",
"is_dark": true,
"name": "Campbell",
"num_settings": 20
},
{
"author": "EdenEast",
"blurb": "Carbonfox theme from the neovim colorscheme nightfox.nvim.",
"file": "themes/Carbonfox.conf",
"is_dark": true,
"license": "MIT",
"name": "Carbonfox",
"num_settings": 32,
"upstream": "https://github.com/EdenEast/nightfox.nvim/blob/main/extra/carbonfox/kitty.conf"
},
{
"author": "Pocco81 (https://github.com/Pocco81)",
"blurb": "Soothing pastel theme for the high-spirited!",
"file": "themes/Catppuccin-Frappe.conf",
"is_dark": true,
"license": "MIT",
"name": "Catppuccin-Frappe",
"num_settings": 39,
"upstream": "https://github.com/catppuccin/kitty/blob/main/frappe.conf"
},
{
"author": "Pocco81 (https://github.com/Pocco81)",
"blurb": "Soothing pastel theme for the high-spirited!",
"file": "themes/Catppuccin-Latte.conf",
"license": "MIT",
"name": "Catppuccin-Latte",
"num_settings": 39,
"upstream": "https://github.com/catppuccin/kitty/blob/main/latte.conf"
},
{
"author": "Pocco81 (https://github.com/Pocco81)",
"blurb": "Soothing pastel theme for the high-spirited!",
"file": "themes/Catppuccin-Macchiato.conf",
"is_dark": true,
"license": "MIT",
"name": "Catppuccin-Macchiato",
"num_settings": 39,
"upstream": "https://github.com/catppuccin/kitty/blob/main/macchiato.conf"
},
{
"author": "Pocco81 (https://github.com/Pocco81)",
"blurb": "Soothing pastel theme for the high-spirited!",
"file": "themes/Catppuccin-Mocha.conf",
"is_dark": true,
"license": "MIT",
"name": "Catppuccin-Mocha",
"num_settings": 39,
"upstream": "https://github.com/catppuccin/kitty/blob/main/mocha.conf"
},
{
"file": "themes/Chalk.conf",
"is_dark": true,
"name": "Chalk",
"num_settings": 21
},
{
"file": "themes/Chalkboard.conf",
"is_dark": true,
"name": "Chalkboard",
"num_settings": 21
},
{
"file": "themes/ChallengerDeep.conf",
"is_dark": true,
"name": "Challenger Deep",
"num_settings": 25
},
{
"author": "nullxception",
"file": "themes/cherry.conf",
"is_dark": true,
"license": "GPLv3",
"name": "Cherry",
"num_settings": 28,
"upstream": "https://github.com/nullxception/cherry-kde/raw/main/kitty/cherry.conf"
},
{
"author": "nullxception",
"file": "themes/cherry-midnight.conf",
"is_dark": true,
"license": "GPLv3",
"name": "Cherry Midnight",
"num_settings": 28,
"upstream": "https://github.com/nullxception/cherry-kde/raw/main/kitty/cherry-midnight.conf"
},
{
"file": "themes/Ciapre.conf",
"is_dark": true,
"name": "Ciapre",
"num_settings": 21
},
{
"file": "themes/Cobalt_Neon.conf",
"is_dark": true,
"name": "Cobalt Neon",
"num_settings": 21
},
{
"author": "Lalit Kumar(@laltimee)",
"blurb": "Don't stress your eyes now",
"file": "themes/Cobalt2.conf",
"is_dark": true,
"license": "MIT",
"name": "Cobalt2",
"num_settings": 39,
"upstream": "https://github.com/lalitmee/kitty-cobalt2/blob/master/cobalt2.conf"
},
{
"author": "Aaron Hall",
"blurb": "ANSI term colors picked with OKHSL maximizing difference in color subject to constant perceptual luminosity so that all colors are readable on dark screens even against transparency yet gentle on the eyes in dark environments. for colors (starting with red at 30 degrees) luminosity is .4, .6 (bright) .5 for white(gray), .7 bright white (light gray) 0 for black and .3 for bright black For transparency I find these work ok: background_opacity 0.7 dynamic_background_opacity yes",
"file": "themes/Constant_Perceptual_Luminosity_dark.conf",
"is_dark": true,
"license": "MIT, I prefer credit (and money) to none, but I won't sue",
"name": "Constant Perceptual Luminosity (dark)",
"num_settings": 26,
"upstream": "none (yet)"
},
{
"file": "themes/Corvine.conf",
"is_dark": true,
"name": "Corvine",
"num_settings": 18
},
{
"file": "themes/CrayonPonyFish.conf",
"is_dark": true,
"name": "Crayon Pony Fish",
"num_settings": 21
},
{
"blurb": "A cyberpunk theme based on the Cyberpunk VIM Colorscheme by thedenisnikulin.",
"file": "themes/cyberpunk.conf",
"is_dark": true,
"license": "MIT",
"name": "Cyberpunk",
"num_settings": 33,
"upstream": "https://raw.githubusercontent.com/jandre953/kitty-cyberpunk/master/cyberpunk.conf"
},
{
"author": "Theo (theo-grivel)",
"file": "themes/Cyberpunk-Neon.conf",
"is_dark": true,
"license": "CC-BY-SA-4.0",
"name": "Cyberpunk Neon",
"num_settings": 21,
"upstream": "https://github.com/Roboron3042/Cyberpunk-Neon/blob/master/terminal/kitty/cyberpunk-neon.conf"
},
{
"file": "themes/DarkOneNuanced.conf",
"is_dark": true,
"name": "Dark One Nuanced",
"num_settings": 26
},
{
"file": "themes/Dark_Pastel.conf",
"is_dark": true,
"name": "Dark Pastel",
"num_settings": 21
},
{
"author": "apathyrecharge",
"blurb": "Dark trans-pride colour inspired theme",
"file": "themes/dark_pride.conf",
"is_dark": true,
"license": "GPLv3",
"name": "Dark Pride",
"num_settings": 21
},
{
"file": "themes/Darkside.conf",
"is_dark": true,
"name": "Darkside",
"num_settings": 21
},
{
"author": "EdenEast",
"blurb": "Dawnfox theme from the neovim colorscheme nightfox.nvim.",
"file": "themes/Dawnfox.conf",
"license": "MIT",
"name": "Dawnfox",
"num_settings": 32,
"upstream": "https://github.com/EdenEast/nightfox.nvim/blob/main/extra/dawnfox/kitty.conf"
},
{
"author": "EdenEast",
"blurb": "Dayfox theme from the neovim colorscheme nightfox.nvim.",
"file": "themes/Dayfox.conf",
"license": "MIT",
"name": "Dayfox",
"num_settings": 32,
"upstream": "https://github.com/EdenEast/nightfox.nvim/blob/main/extra/dayfox/kitty.conf"
},
{
"author": "Kovid Goyal",
"blurb": "This theme uses all default settings from kitty. Use it to easily restore defaults.",
"file": "themes/default.conf",
"is_dark": true,
"license": "GPLv3",
"name": "Default"
},
{
"file": "themes/Desert.conf",
"is_dark": true,
"name": "Desert",
"num_settings": 21
},
{
"file": "themes/DesertNight.conf",
"is_dark": true,
"name": "Desert Night",
"num_settings": 19
},
{
"file": "themes/DimmedMonokai.conf",
"is_dark": true,
"name": "Dimmed Monokai",
"num_settings": 21
},
{
"author": "Henrik Lissner <https://github.com/hlissner>",
"blurb": "Inspired by Atom's One Dark color scheme.",
"file": "themes/Doom_One.conf",
"is_dark": true,
"license": "MIT",
"name": "Doom One",
"num_settings": 28
},
{
"author": "Henrik Lissner <https://github.com/hlissner>",
"blurb": "Doom Emacs flagship theme based on atom One Light",
"file": "themes/Doom_One_Light.conf",
"license": "MIT",
"name": "Doom One Light",
"num_settings": 28
},
{
"author": "Henrik Lissner <https://github.com/hlissner>",
"blurb": "A version of Doom One Emacs theme that uses more vibrant colors.",
"file": "themes/Doom_Vibrant.conf",
"is_dark": true,
"license": "MIT",
"name": "Doom Vibrant",
"num_settings": 28
},
{
"file": "themes/DotGov.conf",
"is_dark": true,
"name": "Dot Gov",
"num_settings": 21
},
{
"author": "Keegan Carruthers-Smith",
"file": "themes/Dracula.conf",
"is_dark": true,
"license": "MIT",
"name": "Dracula",
"num_settings": 29,
"upstream": "https://raw.githubusercontent.com/dracula/kitty/master/dracula.conf"
},
{
"file": "themes/Dumbledore.conf",
"is_dark": true,
"name": "Dumbledore",
"num_settings": 21
},
{
"file": "themes/Duotone_Dark.conf",
"is_dark": true,
"name": "Duotone Dark",
"num_settings": 21
},
{
"author": "EdenEast",
"blurb": "Duskfox theme from the neovim colorscheme nightfox.nvim.",
"file": "themes/Duskfox.conf",
"is_dark": true,
"license": "MIT",
"name": "Duskfox",
"num_settings": 32,
"upstream": "https://github.com/EdenEast/nightfox.nvim/blob/main/extra/duskfox/kitty.conf"
},
{
"file": "themes/ENCOM.conf",
"is_dark": true,
"name": "ENCOM",
"num_settings": 21
},
{
"file": "themes/Earthsong.conf",
"is_dark": true,
"name": "Earthsong",
"num_settings": 21
},
{
"author": "jacobrreed",
"blurb": "A theme for the Ancient Ones!",
"file": "themes/Eldritch.conf",
"is_dark": true,
"license": "MIT",
"name": "Eldritch",
"num_settings": 31,
"upstream": "https://github.com/eldritch-theme/kitty"
},
{
"author": "jacobrreed",
"blurb": "A theme for the Ancient Ones!",
"file": "themes/Eldritch-dark.conf",
"is_dark": true,
"license": "MIT",
"name": "Eldritch dark",
"num_settings": 31,
"upstream": "https://github.com/eldritch-theme/kitty"
},
{
"file": "themes/Elemental.conf",
"is_dark": true,
"name": "Elemental",
"num_settings": 21
},
{
"file": "themes/Espresso.conf",
"is_dark": true,
"name": "Espresso",
"num_settings": 25
},
{
"file": "themes/Espresso_Libre.conf",
"is_dark": true,
"name": "Espresso Libre",
"num_settings": 21
},
{
"author": "Sainnhe Park",
"blurb": "A green based color scheme designed to be warm and soft",
"file": "themes/everforest_dark_hard.conf",
"is_dark": true,