forked from catppuccin/userstyles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserstyles.yml
1034 lines (1033 loc) Β· 27.4 KB
/
userstyles.yml
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
collaborators:
- &nikitarevenco
url: https://github.com/nikitarevenco
- &anubisnekhet
url: https://github.com/AnubisNekhet
- &ndsboy
url: https://github.com/ndsboy
- &jn-sena
name: Sena
url: https://github.com/jn-sena
- &watatomo
name: Ren
url: https://github.com/watatomo
- &ryanccn
name: Ryan Cao
url: https://github.com/ryanccn
- &pocco81
url: https://github.com/Pocco81
- &glowingumbreon
name: Umbreon
url: https://github.com/GlowingUmbreon
- &justtobbi
url: https://github.com/justTOBBI
- &unseen-ninja
name: Lemon
url: https://github.com/unseen-ninja
- &lucasmelin
name: Lucas Melin
url: https://github.com/lucasmelin
- &gingeh
url: https://github.com/Gingeh
- &isabelroses
name: Isabel
url: https://github.com/isabelroses
- &thismoon
url: https://github.com/thismoon
- &cecelot
name: Sydney Newmark
url: https://github.com/cecelot
- &soya-daizu
name: soya_daizu
url: https://github.com/soya-daizu
- &jayylmao
url: https://github.com/jayylmao
- &sekki21956
name: Sekki
url: https://github.com/Sekki21956
- &winston
name: winston
url: https://github.com/nekowinston
- &gitmuslim
url: https://github.com/GitMuslim
- &tnixc
name: Tnixc
url: https://github.com/Tnixc
- &elkrien
name: Elkrien
url: https://github.com/elkrien
- &thememesniper
name: TheMemeSniper
url: https://github.com/TheMemeSniper
- &spaghettiosareyummy
url: https://github.com/spaghettiosareyummy
- &stonks3141
name: Stonks3141
url: https://github.com/Stonks3141
- &rubyowo
url: https://github.com/rubyowo
- &gandalf-the-blue
name: Gandalf the Blue
url: https://github.com/Gandalf-the-Blue
- &francorav
name: FrancoRav
url: https://github.com/FrancoRav
- &coldenate
name: coldenate
url: https://github.com/coldenate
- &skelebro1
name: skele
url: https://github.com/skelebro1
- &r58Playz
name: r58Playz
url: https://github.com/r58Playz
- &rockquiet
name: rockquiet
url: https://github.com/rockquiet
- &nyameliaaaa
name: Amelia Rose
url: https://github.com/Nyameliaaaa
- &nyatalieeee
name: Natalie Raine
url: https://github.com/Nyatalieeee
- &bartlibert
name: Bart Libert
url: https://github.com/bartlibert
- &BlankParticle
name: BlankParticle
url: https://github.com/BlankParticle
- &genshibe
name: GenShibe
url: https://github.com/GenShibe
- &coopw1
name: coopw
url: https://github.com/coopw1
- &rooot
name: rooot
url: https://github.com/RoootTheFox
- &itzTheMeow
name: Meow
url: https://github.com/itzTheMeow
- &Dandraghas
name: Dandraghas
url: https://github.com/Dandraghas
- &uncenter
name: uncenter
url: https://github.com/uncenter
- &thomas-philippot
name: Thomas Philippot
url: https://github.com/thomas-philippot
- &Guaxinim5573
name: Guaxinim5573
url: https://github.com/Guaxinim5573
- &trinkey
url: https://github.com/trinkey
- &NK308
url: https://github.com/NK308
name: NK308
- &00dani
url: https://github.com/00dani
- &kerichdev
name: keri
url: https://github.com/kerichdev
- &Flapperoo
name: Eli
url: https://github.com/Flapperoo
- &jh-devv
name: jh-devv
url: https://github.com/jh-devv
- &stellophiliac
url: https://github.com/stellophiliac
- &neongamerbot
url: https://github.com/NeonGamerBot-QK
- &orangci
name: orangc
url: https://github.com/orangci
- &Lichthagel
url: https://github.com/Lichthagel
- &comfysage
url: https://github.com/comfysage
- &TadoTheMiner
name: jan Tatesa
url: https://github.com/TadoTheMiner
userstyles:
advent-of-code:
name: Advent Of Code
categories: [game, entertainment]
icon: adventofcode
color: yellow
readme:
app-link: https://adventofcode.com
current-maintainers: [*rubyowo]
alternativeto:
name: AlternativeTo
categories: [productivity, discussion_forum]
color: sapphire
readme:
app-link: "https://alternativeto.net"
current-maintainers: [*thismoon]
amplenote:
name: Amplenote
categories: [productivity]
color: blue
readme:
app-link: "https://www.amplenote.com"
current-maintainers: [*stellophiliac]
anilist:
name: ["AniList", "AniChart"]
categories: [entertainment, social_networking]
icon: anilist
color: sky
readme:
app-link: ["https://anilist.co", "https://anichart.net"]
usage: |+
> [!NOTE]
> This theme applies to [AniChart](https://anichart.net/) as well, which is an extension of AniList.
current-maintainers: [*anubisnekhet]
arch-wiki:
name: Arch Wiki
categories: [wiki, productivity]
icon: archlinux
color: blue
readme:
app-link: "https://wiki.archlinux.org/"
usage: "Make sure to use the default **Light** theme"
current-maintainers: []
past-maintainers: [*genshibe]
boringproxy:
name: boringproxy
categories: [development]
color: text
readme:
app-link: "https://boringproxy.io"
current-maintainers: [*gandalf-the-blue]
brave-search:
name: Brave Search
categories: [search_engine]
icon: brave
color: peach
readme:
app-link: "https://search.brave.com"
usage: "Make sure to set the theme to either dark or light in Brave Search settings, as the automatic setting will not work."
current-maintainers: [*ndsboy]
bsky:
name: Bluesky Social
categories: [social_networking, entertainment]
icon: bluesky
color: blue
readme:
app-link: "https://bsky.app"
current-maintainers: [*rooot]
bstats:
name: bStats
categories: [game, entertainment]
color: green
readme:
app-link: "https://bstats.org"
usage: "Make sure to use the default **Teal** theme from the built-in color picker (located at the bottom of the page) for the best experience!"
current-maintainers: [*rockquiet]
canvas-lms:
name: Canvas LMS
categories: [education, productivity]
icon: canvas
color: red
readme:
app-link: "https://www.instructure.com/canvas"
current-maintainers: []
past-maintainers: [*thememesniper]
chatgpt:
name: ChatGPT
categories: [artificial_intelligence, productivity]
icon: openai
color: green
readme:
app-link: "https://chat.openai.com"
current-maintainers: [*uncenter]
past-maintainers: [*rubyowo]
chatreplay:
name: ChatReplay
categories: [entertainment, social_networking]
color: peach
readme:
app-link: "https://chatreplay.stream"
current-maintainers: [*anubisnekhet]
chess.com:
name: Chess.com
categories: [game, education]
icon: chessdotcom
color: green
readme:
app-link: "https://chess.com"
current-maintainers: []
past-maintainers: [*skelebro1, *isabelroses, *coldenate]
cinny:
name: Cinny
categories: [social_networking]
color: text
readme:
app-link: "https://cinny.in"
current-maintainers: [*jn-sena]
codeberg:
name: Codeberg
categories: [development, productivity]
icon: codeberg
color: blue
readme:
app-link: "https://codeberg.org"
current-maintainers: [*isabelroses]
past-maintainers: [*justtobbi]
cobalt:
name: cobalt
categories: [productivity, photo_and_video]
color: text
readme:
app-link: "https://cobalt.tools"
current-maintainers: [*kerichdev]
crates.io:
name: crates.io
categories: [development]
icon: rust
color: yellow
readme:
app-link: "https://crates.io"
current-maintainers: [*uncenter]
crowdin:
name: Crowdin
categories: [translation_tool, productivity]
icon: crowdin
color: text
readme:
app-link: "https://crowdin.com"
current-maintainers: [*ryanccn]
deepl:
name: DeepL
categories: [translation_tool, productivity]
icon: deepl
color: blue
readme:
app-link: "https://deepl.com"
current-maintainers: [*watatomo]
docs.rs:
name: docs.rs
categories: [development]
icon: docsdotrs
color: yellow
readme:
app-link: "https://docs.rs"
current-maintainers: [*uncenter]
duckduckgo:
name: DuckDuckGo
categories: [search_engine]
icon: duckduckgo
color: peach
readme:
app-link: "https://duckduckgo.com"
current-maintainers: [*genshibe]
ecosia:
name: Ecosia
categories: [search_engine]
color: green
readme:
app-link: "https://www.ecosia.org"
current-maintainers: [*isabelroses]
elk:
name: Elk
categories: [social_networking]
color: peach
readme:
app-link: "https://elk.zone"
current-maintainers: [*ryanccn]
freedesktop:
name: freedesktop.org
categories: [development]
icon: freedesktopdotorg
color: blue
readme:
app-link: "https://www.freedesktop.org"
current-maintainers: [*NK308]
formative:
name: Formative
categories: [education, productivity]
color: blue
readme:
app-link: "https://app.formative.com/home"
current-maintainers: [*r58Playz]
github:
name: GitHub
categories: [development, productivity]
icon: github
color: text
readme:
usage: "Switch to a default GitHub light/dark theme via **Settings** > **Appearance** for the best experience!"
app-link: "https://github.com"
current-maintainers: [*uncenter]
past-maintainers: [*unseen-ninja, *pocco81, *glowingumbreon]
gmail:
name: Gmail
categories: [email_client, productivity]
icon: gmail
color: peach
readme:
usage: "Switch to the default dark theme via the **Settings** > **Themes** > **View all** for the best experience!"
app-link: "https://mail.google.com"
current-maintainers: [*uncenter]
past-maintainers: [*isabelroses]
go.dev:
name: go.dev
categories: [development, wiki]
icon: go
color: sapphire
readme:
app-link: "https://go.dev"
current-maintainers: [*Flapperoo]
google:
name: Google
categories: [search_engine]
icon: google
color: sapphire
readme:
app-link: "https://google.com"
current-maintainers: [*gitmuslim]
google-drive:
name: Google Drive
categories: [productivity]
icon: googledrive
color: blue
readme:
app-link: "https://drive.google.com"
current-maintainers: [*r58Playz]
google-photos:
name: Google Photos
categories: [photo_and_video]
icon: googlephotos
color: sapphire
readme:
app-link: "https://photos.google.com"
current-maintainers: [*genshibe]
graphite:
name: Graphite
categories: [development, productivity]
icon: graphite
color: text
readme:
app-link: "https://app.graphite.dev"
current-maintainers: [*isabelroses]
google-gemini:
name: Google Gemini
categories: [artificial_intelligence, productivity]
icon: googlegemini
color: mauve
readme:
app-link: "https://gemini.google.com"
current-maintainers: [*Dandraghas]
hackage:
name: Hackage
categories: [development, productivity]
icon: haskell
color: mauve
readme:
app-link: "https://hackage.haskell.org"
current-maintainers: [*jn-sena]
hacker-news:
name: Hacker News
categories: [discussion_forum, entertainment, social_networking]
icon: ycombinator
color: peach
readme:
app-link: "https://news.ycombinator.com"
current-maintainers: [*lucasmelin]
have-i-been-pwned:
name: Have I Been Pwned
categories: [productivity]
color: blue
readme:
app-link: "https://haveibeenpwned.com"
current-maintainers: [*trinkey]
holodex:
name: Holodex
categories: [entertainment, social_networking, photo_and_video]
color: pink
readme:
app-link: "https://holodex.net"
usage: |+
> [!NOTE]
> Holodex's selected theme is ignored.
current-maintainers: [*Guaxinim5573]
home-manager-options-search:
name: Home Manager Options Search
categories: [development]
color: blue
readme:
app-link: "https://home-manager-options.extranix.com"
current-maintainers: [*uncenter]
homepage:
name: homepage
categories: [productivity]
color: sky
readme:
app-link: "https://github.com/benphelps/homepage"
current-maintainers: [*gandalf-the-blue]
hoppscotch:
name: Hoppscotch
categories: [development, productivity]
icon: hoppscotch
color: green
readme:
app-link: "https://hoppscotch.io/"
current-maintainers: [*justtobbi]
learn-x-in-y-minutes:
name: Learn X in Y Minutes
categories: [development, wiki]
color: blue
readme:
app-link: "https://learnxinyminutes.com/"
current-maintainers: [*nikitarevenco]
hyperpipe:
name: Hyperpipe
categories: [music]
color: teal
readme:
app-link: "https://hyperpipe.surge.sh/"
current-maintainers: [*jn-sena]
ichi.moe:
name: ichi.moe
categories: [translation_tool, productivity]
color: pink
readme:
app-link: "https://ichi.moe"
current-maintainers: [*watatomo]
inoreader:
name: inoreader
categories: [productivity]
icon: inoreader
color: blue
readme:
app-link: "https://inoreader.com"
current-maintainers: [*thomas-philippot]
instagram:
name: Instagram
categories: [social_networking, photo_and_video, entertainment]
icon: instagram
color: pink
readme:
app-link: "https://instagram.com"
current-maintainers: [*genshibe]
past-maintainers: [*isabelroses]
invidious:
name: Invidious
categories: [entertainment, social_networking]
icon: youtube
color: red
readme:
app-link: "https://invidious.io"
current-maintainers: []
past-maintainers: [*unseen-ninja, *winston]
invokeai:
name: InvokeAI
categories: [artificial_intelligence, productivity]
color: yellow
readme:
app-link: "https://invoke-ai.github.io/InvokeAI"
current-maintainers: [*ryanccn]
jisho:
name: Jisho
categories: [translation_tool]
color: green
readme:
app-link: "https://jisho.org"
current-maintainers: [*Lichthagel]
keybr.com:
name: keybr.com
categories: [productivity]
color: text
readme:
app-link: "https://keybr.com"
current-maintainers: [*TadoTheMiner]
keyoxide:
name: Keyoxide
categories: [development]
color: mauve
readme:
app-link: "https://keyoxide.org"
current-maintainers: [*uncenter]
lastfm:
name: Last.fm
categories: [music, entertainment]
icon: lastdotfm
color: red
readme:
app-link: "https://last.fm"
current-maintainers: [*anubisnekhet]
past-maintainers: [*gingeh]
lemmy:
name: Lemmy
categories: [discussion_forum, entertainment, social_networking]
icon: lemmy
color: green
readme:
app-link: "https://lemmy.world"
current-maintainers: [*gandalf-the-blue]
libreddit:
name: ["Libreddit", "Redlib"]
categories: [discussion_forum, entertainment, social_networking]
icon: reddit
color: peach
readme:
app-link: ["https://github.com/libreddit/libreddit", "https://github.com/redlib-org/redlib"]
current-maintainers: []
past-maintainers: [*unseen-ninja]
lichess:
name: Lichess
categories: [game]
icon: lichess
color: text
readme:
usage: "Switch to a default Lichess light/dark theme via **Username** > **Background** for the best experience!"
app-link: "https://lichess.org/"
current-maintainers: [*coopw1]
lingva:
name: Lingva
categories: [translation_tool, productivity]
color: green
readme:
app-link: "https://github.com/thedaviddelta/lingva-translate"
current-maintainers: [*rubyowo]
linkedin:
name: LinkedIn
categories: [social_networking]
icon: linkedin
color: blue
readme:
app-link: "https://www.linkedin.com"
current-maintainers: [*isabelroses]
listenbrainz:
name: ListenBrainz
categories: [music, entertainment]
icon: musicbrainz
color: peach
readme:
app-link: 'https://listenbrainz.org'
current-maintainers: [*00dani]
mastodon:
name: Mastodon
categories: [social_networking, entertainment]
icon: mastodon
color: lavender
readme:
app-link: "https://github.com/mastodon/mastodon"
faq:
- question: "**The theme does not look the same as the preview?**"
answer: "Your Mastodon instance may be using its own custom CSS, which is changing the look of the theme."
current-maintainers: [*comfysage]
past-maintainers: [*unseen-ninja, *isabelroses]
mdbook:
name: mdBook
categories: [wiki, development]
icon: mdbook
color: text
readme:
app-link: "https://rust-lang.github.io/mdBook/"
current-maintainers: [*uncenter]
mdn:
name: MDN
categories: [development, wiki]
icon: mdnwebdocs
color: text
readme:
app-link: "https://developer.mozilla.org"
current-maintainers: [*soya-daizu]
modrinth:
name: Modrinth
categories: [game]
icon: modrinth
color: green
readme:
app-link: "https://modrinth.com"
current-maintainers: [*thismoon]
microsoft-word:
name: Microsoft Word
categories: [productivity]
icon: microsoftword
color: blue
readme:
app-link: "https://office.com"
current-maintainers: [*gitmuslim]
migadu-webmail:
name: Migadu Webmail
categories: [email_client, productivity]
icon: migadu
color: blue
readme:
app-link: https://webmail.migadu.com/
usage: |+
> [!NOTE]
> Set Migadu Webmail's built-in theme to 'Migadu' for the optimal experience.
current-maintainers: [*uncenter]
minesweeper:
name: Minesweeper Online
categories: [game]
color: text
readme:
app-link: "https://minesweeper.online"
current-maintainers: [*gitmuslim]
namemc:
name: NameMC
categories: [game_development, analytics, discussion_forum]
icon: namemc
color: blue
readme:
app-link: "https://namemc.com/"
current-maintainers: [*nyatalieeee]
nitter:
name: Nitter
categories: [social_networking, discussion_forum, entertainment]
icon: twitter
color: blue
readme:
app-link: "https://nitter.net"
current-maintainers: [*anubisnekhet]
nixos-search:
name: NixOS Search
categories: [search_engine]
icon: nixos
color: blue
readme:
app-link: "https://search.nixos.org"
current-maintainers: [*cecelot]
wiki.nixos.org:
name: NixOS Wiki
categories: [wiki, development]
icon: nixos
color: blue
readme:
app-link: "wiki.nixos.org"
current-maintainers: [*orangci]
past-maintainers: [*winston]
npm:
name: npm
categories: [development]
icon: npm
color: red
readme:
app-link: "https://www.npmjs.com/"
current-maintainers: [*uncenter]
ollama:
name: Ollama
categories: [development]
color: text
readme:
app-link: "https://ollama.com"
current-maintainers: [*neongamerbot]
openmediavault:
name: openmediavault
categories: [productivity]
icon: openmediavault
color: sky
readme:
app-link: "https://www.openmediavault.org/"
current-maintainers: [*gandalf-the-blue]
paste.rs:
name: paste.rs
categories: [development]
icon: pastebin
color: peach
readme:
app-link: "https://paste.rs"
current-maintainers: [*Guaxinim5573]
past-maintainers: [*stonks3141]
perplexity:
name: Perplexity
categories: [artificial_intelligence, search_engine]
icon: perplexity
color: teal
readme:
app-link: "https://www.perplexity.ai"
current-maintainers: [*tnixc]
past-maintainers: [*isabelroses]
phanpy:
name: Phanpy
categories: [social_networking, entertainment]
color: blue
readme:
app-link: "https://phanpy.social"
current-maintainers: [*Guaxinim5573]
picrew:
name: Picrew
categories: [entertainment, photo_and_video]
icon: picrew
color: yellow
readme:
app-link: "https://picrew.me"
current-maintainers: [*nyatalieeee]
pinterest:
name: Pinterest
categories: [photo_and_video, entertainment, social_networking]
icon: pinterest
color: red
readme:
app-link: "https://www.pinterest.com"
current-maintainers: []
past-maintainers: [*jn-sena]
planet-minecraft:
name: Planet Minecraft
categories: [game]
color: green
readme:
app-link: "https://planetminecraft.com"
current-maintainers: [*nyameliaaaa]
porkbun:
name: Porkbun
categories: [productivity]
icon: porkbun
color: pink
readme:
app-link: https://porkbun.com
current-maintainers: [*uncenter]
pronouns.page:
name: Pronouns.page
categories: [social_networking]
icon: pronounsdotpage
color: pink
readme:
app-link: "https://pronouns.page/"
current-maintainers: [*uncenter]
proton:
name: Proton
categories: [productivity, email_client]
icon: protonmail
color: mauve
readme:
app-link: "https://proton.me/"
usage: |+
> [!NOTE]
> Set Proton Mail's built-in theme to 'Snow' if you're using Latte or 'Carbon' if you're using the others.
current-maintainers: [*soya-daizu]
pypi:
name: PyPI
categories: [development]
color: sapphire
readme:
app-link: "https://pypi.org"
current-maintainers: [*trinkey]
quizlet:
name: Quizlet
categories: [education, productivity]
icon: quizlet
color: mauve
readme:
app-link: "https://quizlet.com"
current-maintainers: [*spaghettiosareyummy]
raindrop:
name: Raindrop
categories: [productivity]
color: blue
readme:
app-link: "https://app.raindrop.io"
current-maintainers: [*thismoon]
reddit:
name: Reddit
categories: [discussion_forum, social_networking, entertainment]
color: red
icon: reddit
readme:
app-link: "https://reddit.com"
current-maintainers: []
past-maintainers: [*jayylmao, *rubyowo]
rentry.co:
name: Rentry.co
categories: [productivity]
color: text
readme:
app-link: "https://rentry.co/"
current-maintainers: [*thismoon]
searxng:
name: SearXNG
categories: [search_engine]
icon: searxng
color: blue
readme:
app-link: "https://github.com/searxng/searxng"
current-maintainers: [*sekki21956, *ryanccn]
shinigami-eyes:
name: Shinigami Eyes
categories: [browser_extension, social_networking]
color: mauve
readme:
app-link: "https://shinigami-eyes.github.io"
current-maintainers: [*jh-devv]
snapchat-web:
name: Snapchat Web
categories: [social_networking, photo_and_video, entertainment]
icon: snapchat
color: yellow
readme:
app-link: "https://web.snapchat.com"
current-maintainers: [*itzTheMeow]
spotify-web:
name: Spotify Web
categories: [music]
icon: spotify
color: green
readme:
app-link: "https://open.spotify.com"
current-maintainers: [*tnixc]
stack-overflow:
name: Stack Overflow
categories: [development]
icon: stackoverflow
color: peach
readme:
app-link: https://stackoverflow.com
current-maintainers: [*uncenter]
startpage:
name: Startpage
categories: [search_engine]
color: lavender
readme:
app-link: "https://startpage.com"
current-maintainers: []
past-maintainers: [*bartlibert]
stylus:
name: Stylus
categories: [browser_extension]
color: teal
readme:
app-link: "https://github.com/openstyles/stylus"
current-maintainers: [*gitmuslim]
substack:
name: Substack
categories: [entertainment, social_networking]
icon: substack
color: peach
readme:
app-link: "https://substack.com"
current-maintainers: []
past-maintainers: [*winston]
syncthing:
name: Syncthing
categories: [productivity]
icon: syncthing
color: sapphire
readme:
app-link: "https://syncthing.net"
usage: |+
> [!NOTE]
> This theme is designed to be used with the default WebGUI and default theme provided by Syncthing. This does not theme syncthing.net.
current-maintainers: [*BlankParticle]
tabnews:
name: TabNews
categories: [discussion_forum, entertainment, social_networking]
color: text
readme:
app-link: "https://tabnews.com.br"
current-maintainers: [*Guaxinim5573]
tldraw:
name: tldraw
categories: [productivity]
icon: tldraw
color: text
readme:
app-link: "https://www.tldraw.com"
usage: |+
> [!NOTE]
> This theme only changes how the colors appear on the tldraw canvas. Exported graphics **will not be Catppuccin-themed**.
current-maintainers: [*genshibe, *uncenter]
trinket:
name: Trinket
categories: [development]
color: blue
readme:
app-link: "https://trinket.io"
current-maintainers: [*trinkey]
tuta:
name: Tuta
categories: [email_client, productivity]
icon: tutanota
color: maroon
readme:
app-link: "https://tuta.com/"
usage: |+
> [!NOTE]
> Set Tuta's built-in theme to either **light** if you're using Latte or **dark** if you're using the others.
current-maintainers: [*ryanccn]
twitch:
name: Twitch
categories: [entertainment, social_networking, photo_and_video]
icon: twitch
color: mauve
readme:
app-link: "https://twitch.tv"
current-maintainers: [*gitmuslim, *uncenter]
twitter:
name: Twitter
categories: [social_networking, discussion_forum, entertainment]
color: blue
icon: twitter
readme:
app-link: "https://twitter.com"
usage: |+
> [!NOTE]
> Set Twitter's built-in theme to **Lights out** with the blue accent. Also requires the [:has()](https://developer.mozilla.org/en-US/docs/Web/CSS/:has) selector.
current-maintainers: [*watatomo]
vercel:
name: ["Vercel", "Next.js"]
categories: [development]
icon: vercel
color: text
readme:
app-link: ["https://vercel.com", "https://nextjs.org"]
usage: |+
> [!NOTE]
> This theme also applies to the [Next.js](https://nextjs.org/) website.
current-maintainers: [*ryanccn, *Dandraghas]
vikunja:
name: Vikunja
categories: [productivity, note_taking]
color: blue
readme:
app-link: "https://vikunja.io"
current-maintainers: [*Guaxinim5573]
web.dev:
name: web.dev
categories: [development]
color: blue
readme:
app-link: https://web.dev/
current-maintainers: [*uncenter]
whatsapp-web:
name: WhatsApp Web
categories: [social_networking]