-
-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathuserstyles.yml
More file actions
1000 lines (999 loc) Β· 26.6 KB
/
userstyles.yml
File metadata and controls
1000 lines (999 loc) Β· 26.6 KB
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:
- &nik-rev nik-rev
- &AlwaysNur AlwaysNur
- &AnubisNekhet AnubisNekhet
- &ndsboy ndsboy
- &jn-sena jn-sena
- &watatomo watatomo
- &ryanccn ryanccn
- &Pocco81 Pocco81
- &GlowingUmbreon GlowingUmbreon
- &justTOBBI justTOBBI
- &unseen-ninja unseen-ninja
- &lucasmelin lucasmelin
- &Gingeh Gingeh
- &isabelroses isabelroses
- &thismoon thismoon
- &sydrinea sydrinea
- &soya-daizu soya-daizu
- &jayylmao jayylmao
- &Sekki21956 Sekki21956
- &nekowinston nekowinston
- &Tnixc Tnixc
- &elkrien elkrien
- &TheMemeSniper TheMemeSniper
- &spaghettiosareyummy spaghettiosareyummy
- &Stonks3141 Stonks3141
- &rubyowo rubyowo
- &Gandalf-the-Blue Gandalf-the-Blue
- &FrancoRav FrancoRav
- &coldenate coldenate
- &skelebro1 skelebro1
- &r58Playz r58Playz
- &rockquiet rockquiet
- &Nyameliaaaa Nyameliaaaa
- &Meowcelinee Meowcelinee
- &bartlibert bartlibert
- &BlankParticle BlankParticle
- &GenShibe GenShibe
- &coopw1 coopw1
- &RoootTheFox RoootTheFox
- &itzTheMeow itzTheMeow
- &Dandraghas Dandraghas
- &uncenter uncenter
- &thomas-philippot thomas-philippot
- &Guaxinim5573 Guaxinim5573
- &trinkey trinkey
- &NK308 NK308
- &00dani 00dani
- &kerichdev kerichdev
- &Flapperoo Flapperoo
- &sofiedotcafe sofiedotcafe
- &stellophiliac stellophiliac
- &bunfluff bunfluff
- &NeonGamerBot-QK NeonGamerBot-QK
- &orangci orangci
- &Lichthagel Lichthagel
- &comfysage comfysage
- &janTatesa janTatesa
- &mxgic1337 mxgic1337
- &steinuil steinuil
- &husjon husjon
- &RaiderHCPlay RaiderHCPlay
- &ruiiiijiiiiang ruiiiijiiiiang
- &pynappo pynappo
- &nuexq nuexq
- &WalkQuackBack WalkQuackBack
- &gradylink gradylink
- &ashish0kumar ashish0kumar
- &shnjd shnjd
- &zenoix zenoix
- &NekoDrone NekoDrone
- &adamperkowski adamperkowski
userstyles:
advent-of-code:
name: Advent Of Code
link: https://adventofcode.com
categories: [game, entertainment]
icon: adventofcode
color: yellow
current-maintainers: [*rubyowo]
alacritty.org:
name: alacritty.org
link: https://alacritty.org
categories: [terminal, development]
icon: alacritty
color: peach
current-maintainers: [*AlwaysNur]
alternativeto:
name: AlternativeTo
link: https://alternativeto.net
categories: [productivity, discussion_forum]
color: sapphire
current-maintainers: [*thismoon]
amplenote:
name: Amplenote
link: https://www.amplenote.com
categories: [note_taking]
color: blue
current-maintainers: [*stellophiliac]
anilist:
name: AniList
link: https://anilist.co
categories: [entertainment, social_networking]
icon: anilist
color: sky
supports:
anichart:
name: AniChart
link: https://anichart.net
current-maintainers: [*AnubisNekhet]
arch-wiki:
name: Arch Wiki
link: https://wiki.archlinux.org
categories: [wiki]
icon: archlinux
color: blue
note: "Make sure to use the default **Light** theme."
current-maintainers: []
past-maintainers: [*GenShibe]
boringproxy:
name: boringproxy
link: https://boringproxy.io
categories: [development]
color: text
current-maintainers: [*Gandalf-the-Blue]
brave-search:
name: Brave Search
link: https://search.brave.com
categories: [search_engine]
icon: brave
color: peach
note: "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
link: https://bsky.app
categories: [social_networking]
icon: bluesky
color: blue
current-maintainers: [*RoootTheFox]
bstats:
name: bStats
link: https://bstats.org
categories: [analytics, game_development]
color: green
note: "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
link: https://www.instructure.com/canvas
categories: [education]
icon: canvas
color: red
current-maintainers: [*pynappo]
past-maintainers: [*TheMemeSniper]
chatgpt:
name: ChatGPT
link: https://chat.openai.com
categories: [artificial_intelligence]
icon: openai
color: green
current-maintainers: [*uncenter]
past-maintainers: [*rubyowo]
chatreplay:
name: ChatReplay
link: https://chatreplay.stream
categories: [entertainment, social_networking]
color: peach
current-maintainers: [*AnubisNekhet]
chess.com:
name: Chess.com
link: https://chess.com
categories: [game]
icon: chessdotcom
color: green
current-maintainers: [*uncenter]
past-maintainers: [*skelebro1, *isabelroses, *coldenate]
cinny:
name: Cinny
link: https://cinny.in
categories: [social_networking]
color: text
current-maintainers: [*jn-sena]
claude:
name: Claude
link: https://claude.ai
categories: [artificial_intelligence, productivity]
color: peach
icon: claude
current-maintainers: [*ruiiiijiiiiang]
codeberg:
name: Codeberg
link: https://codeberg.org
categories: [development]
icon: codeberg
color: blue
current-maintainers: [*isabelroses]
past-maintainers: [*justTOBBI]
cobalt:
name: cobalt
link: https://cobalt.tools
categories: [productivity, photo_and_video]
color: text
current-maintainers: [*kerichdev]
crates.io:
name: crates.io
link: https://crates.io
categories: [package_registry]
icon: rust
color: yellow
current-maintainers: [*uncenter]
crowdin:
name: Crowdin
link: https://crowdin.com
categories: [translation_tool]
icon: crowdin
color: text
current-maintainers: [*ryanccn]
deepl:
name: DeepL
link: https://deepl.com
categories: [translation_tool]
icon: deepl
color: blue
current-maintainers: [*watatomo]
deepseek:
name: DeepSeek
link: https://chat.deepseek.com
categories: [artificial_intelligence]
icon: deepseek
color: blue
current-maintainers: [*WalkQuackBack]
desmos:
name: Desmos
link: https://desmos.com
categories: [education]
color: green
note: "This userstyle is currently incompatible with DesModder's Visual>Syntax Highlighting plugin."
current-maintainers: [*gradylink]
dev.to:
name: DEV Community
link: https://dev.to
categories: [discussion_forum]
icon: devdotto
color: text
current-maintainers: [*shnjd]
devdocs:
name: DevDocs
link: https://devdocs.io
categories: [development, wiki]
color: text
current-maintainers: [*ashish0kumar]
docs.deno.com:
name: docs.deno.com
link: https://docs.deno.com
categories: [development]
icon: deno
color: green
current-maintainers: [*uncenter]
docs.rs:
name: docs.rs
link: https://docs.rs
categories: [development]
icon: docsdotrs
color: yellow
current-maintainers: [*uncenter]
duckduckgo:
name: DuckDuckGo
link: https://duckduckgo.com
categories: [search_engine]
icon: duckduckgo
color: peach
current-maintainers: [*GenShibe]
ecosia:
name: Ecosia
link: https://www.ecosia.org
categories: [search_engine]
color: green
current-maintainers: []
past-maintainers: [*isabelroses]
elk:
name: Elk
link: https://elk.zone
categories: [social_networking]
color: peach
current-maintainers: [*ryanccn]
freedesktop:
name: freedesktop.org
link: https://www.freedesktop.org
categories: [development]
icon: freedesktopdotorg
color: blue
current-maintainers: [*NK308]
formative:
name: Formative
link: https://app.formative.com/home
categories: [education]
color: blue
current-maintainers: [*r58Playz]
ghostty.org:
name: Ghostty.org
link: https://ghostty.org
categories: [terminal]
color: blue
current-maintainers: [*uncenter]
gimkit:
name: Gimkit
link: https://gimkit.com
categories: [education]
color: mauve
current-maintainers: [*gradylink]
github:
name: GitHub
link: https://github.com
categories: [development, productivity]
icon: github
color: text
note: "Switch to a default GitHub light/dark theme via **Settings** > **Appearance** for the best experience!"
current-maintainers: [*uncenter]
past-maintainers: [*unseen-ninja, *Pocco81, *GlowingUmbreon]
gleam.run:
name: gleam.run
link: https://gleam.run
categories: [development]
icon: gleam
color: pink
current-maintainers: [*uncenter]
gmail:
name: Gmail
link: https://mail.google.com
categories: [email_client]
icon: gmail
color: peach
note: "Switch to the default dark theme via the **Settings** > **Themes** > **View all** for the best experience!"
current-maintainers: [*uncenter]
past-maintainers: [*isabelroses]
go.dev:
name: go.dev
link: https://go.dev
categories: [development, wiki]
icon: go
color: sapphire
current-maintainers: [*Flapperoo]
google:
name: Google
link: https://google.com
categories: [search_engine]
icon: google
color: sapphire
current-maintainers: []
google-drive:
name: Google Drive
link: https://drive.google.com
categories: [productivity]
icon: googledrive
color: blue
current-maintainers: [*r58Playz, *WalkQuackBack]
google-photos:
name: Google Photos
link: https://photos.google.com
categories: [photo_and_video]
icon: googlephotos
color: sapphire
current-maintainers: [*GenShibe, *WalkQuackBack]
grabify:
name: Grabify
link: https://grabify.link
categories: [development, productivity]
color: teal
current-maintainers: [*trinkey]
graphite:
name: Graphite
link: https://app.graphite.com
categories: [development, productivity]
icon: graphite
color: text
current-maintainers: []
past-maintainers: [*isabelroses]
google-gemini:
name: Google Gemini
link: https://gemini.google.com
categories: [artificial_intelligence]
icon: googlegemini
color: mauve
current-maintainers: [*Dandraghas, *WalkQuackBack]
hackage:
name: Hackage
link: https://hackage.haskell.org
categories: [package_registry]
icon: haskell
color: mauve
current-maintainers: [*jn-sena]
hacker-news:
name: Hacker News
link: https://news.ycombinator.com
categories: [discussion_forum]
icon: ycombinator
color: peach
current-maintainers: [*lucasmelin]
have-i-been-pwned:
name: Have I Been Pwned
link: https://haveibeenpwned.com
categories: [productivity]
color: blue
current-maintainers: [*trinkey]
holodex:
name: Holodex
link: https://holodex.net
categories: [entertainment, social_networking, photo_and_video]
color: pink
note: Holodex's selected theme is ignored.
current-maintainers: [*Guaxinim5573]
home-manager-options-search:
name: Home Manager Options Search
link: https://home-manager-options.extranix.com
categories: [development]
color: blue
current-maintainers: [*uncenter]
homepage:
name: homepage
link: https://github.com/benphelps/homepage
categories: [productivity]
color: sky
current-maintainers: [*Gandalf-the-Blue]
hoogle:
name: Hoogle
link: https://hoogle.haskell.org
categories: [development, search_engine]
icon: haskell
color: mauve
current-maintainers: [*jn-sena]
hoppscotch:
name: Hoppscotch
link: https://hoppscotch.io
categories: [development, productivity]
icon: hoppscotch
color: green
current-maintainers: [*justTOBBI]
learn-x-in-y-minutes:
name: Learn X in Y Minutes
link: https://learnxinyminutes.com
categories: [development, wiki]
color: blue
current-maintainers: [*nik-rev]
hyperpipe:
name: Hyperpipe
link: https://hyperpipe.surge.sh
categories: [music]
color: teal
current-maintainers: [*jn-sena]
ichi.moe:
name: ichi.moe
link: https://ichi.moe
categories: [translation_tool]
color: pink
current-maintainers: [*watatomo]
inoreader:
name: inoreader
link: https://inoreader.com
categories: [productivity]
icon: inoreader
color: blue
current-maintainers: [*thomas-philippot]
indie-wiki-buddy:
name: Indie Wiki Buddy
link: https://getindie.wiki
categories: [browser_extension]
color: blue
current-maintainers: [*thismoon]
instagram:
name: Instagram
link: https://instagram.com
categories: [social_networking, photo_and_video]
icon: instagram
color: pink
current-maintainers: [*GenShibe]
past-maintainers: [*isabelroses]
invidious:
name: Invidious
link: https://invidious.io
categories: [entertainment]
icon: youtube
color: red
current-maintainers: []
past-maintainers: [*unseen-ninja, *nekowinston]
invokeai:
name: InvokeAI
link: https://invoke-ai.github.io/InvokeAI
categories: [artificial_intelligence, productivity]
color: yellow
current-maintainers: [*ryanccn]
jisho:
name: Jisho
link: https://jisho.org
categories: [translation_tool]
color: green
current-maintainers: [*Lichthagel]
keybr.com:
name: keybr.com
link: https://keybr.com
categories: [productivity, education]
color: text
current-maintainers: [*janTatesa]
keyoxide:
name: Keyoxide
link: https://keyoxide.org
categories: [development]
color: mauve
current-maintainers: [*uncenter]
lastfm:
name: Last.fm
link: https://last.fm
categories: [music, analytics]
icon: lastdotfm
color: red
current-maintainers: [*AnubisNekhet]
past-maintainers: [*Gingeh]
lemmy:
name: Lemmy
link: https://lemmy.world
categories: [discussion_forum, social_networking]
icon: lemmy
color: green
current-maintainers: [*Gandalf-the-Blue]
libreddit:
name: Libreddit
link: https://github.com/libreddit/libreddit
categories: [discussion_forum, social_networking]
icon: reddit
color: peach
supports:
redlib:
name: Redlib
link: https://github.com/redlib-org/redlib
current-maintainers: []
past-maintainers: [*unseen-ninja]
lichess:
name: Lichess
link: https://lichess.org
categories: [game]
icon: lichess
color: text
note: "Switch to a default Lichess light/dark theme via **Username** > **Background** for the best experience!"
current-maintainers: [*coopw1, *zenoix]
lingva:
name: Lingva
link: https://github.com/thedaviddelta/lingva-translate
categories: [translation_tool]
color: green
current-maintainers: [*rubyowo]
linkedin:
name: LinkedIn
link: https://www.linkedin.com
categories: [social_networking, productivity]
icon: linkedin
color: blue
current-maintainers: []
past-maintainers: [*isabelroses]
listenbrainz:
name: ListenBrainz
link: https://listenbrainz.org
categories: [music]
icon: musicbrainz
color: peach
current-maintainers: [*00dani]
lobste.rs:
name: Lobsters
link: https://lobste.rs
categories: [discussion_forum, social_networking]
icon: lobsters
color: red
current-maintainers: [*steinuil]
mastodon:
name: Mastodon
link: https://github.com/mastodon/mastodon
categories: [social_networking]
icon: mastodon
color: lavender
current-maintainers: [*comfysage]
past-maintainers: [*unseen-ninja, *isabelroses]
mdbook:
name: mdBook
link: https://rust-lang.github.io/mdBook/
categories: [documentation_generator]
icon: mdbook
color: text
current-maintainers: [*uncenter]
mdn:
name: MDN
link: https://developer.mozilla.org
categories: [development, wiki]
icon: mdnwebdocs
color: text
current-maintainers: [*soya-daizu]
modrinth:
name: Modrinth
link: https://modrinth.com
categories: [game]
icon: modrinth
color: green
current-maintainers: [*thismoon]
microsoft-word:
name: Microsoft Word
link: https://office.com
categories: [productivity]
icon: microsoftword
color: blue
current-maintainers: []
migadu-webmail:
name: Migadu Webmail
link: https://webmail.migadu.com
categories: [email_client]
icon: migadu
color: blue
note: Set Migadu Webmail's built-in theme to 'Migadu' for the optimal experience.
current-maintainers: [*uncenter]
minesweeper:
name: Minesweeper Online
link: https://minesweeper.online
categories: [game]
color: text
current-maintainers: []
mullvad-leta:
name: Mullvad Leta
link: https://leta.mullvad.net
categories: [search_engine]
color: yellow
current-maintainers: [*jn-sena]
namemc:
name: NameMC
link: https://namemc.com
categories: [game_development, analytics]
icon: namemc
color: blue
current-maintainers: [*Meowcelinee]
neovim.io:
name: neovim.io
link: https://neovim.io
categories: [development]
icon: neovim
color: green
current-maintainers: [*comfysage]
nitter:
name: Nitter
link: https://nitter.net
categories: [social_networking, discussion_forum]
icon: twitter
color: blue
current-maintainers: [*AnubisNekhet]
nixos-manual:
name: NixOS Manual
link: https://nixos.org/manual/nixos
categories: [development, wiki]
icon: nixos
color: blue
supports:
nixpkgs-manual:
name: "Nixpkgs Manual"
link: https://nixos.org/manual/nixpkgs
current-maintainers: [*husjon]
nixos-search:
name: NixOS Search
link: https://search.nixos.org
categories: [search_engine]
icon: nixos
color: blue
current-maintainers: [*sydrinea]
wiki.nixos.org:
name: NixOS Wiki
link: https://wiki.nixos.org
categories: [wiki, development]
icon: nixos
color: blue
current-maintainers: [*orangci]
past-maintainers: [*nekowinston]
npm:
name: npm
link: https://www.npmjs.com
categories: [package_registry]
icon: npm
color: red
current-maintainers: [*uncenter]
ollama:
name: Ollama
link: https://ollama.com
categories: [artificial_intelligence, development]
color: text
current-maintainers: [*NeonGamerBot-QK]
openmediavault:
name: openmediavault
link: https://www.openmediavault.org
categories: [file_manager, productivity]
icon: openmediavault
color: sky
current-maintainers: [*Gandalf-the-Blue]
paste.rs:
name: paste.rs
link: https://paste.rs
categories: [development]
icon: pastebin
color: peach
current-maintainers: [*Guaxinim5573]
past-maintainers: [*Stonks3141]
perplexity:
name: Perplexity
link: https://www.perplexity.ai
categories: [artificial_intelligence, search_engine]
icon: perplexity
color: teal
current-maintainers: [*Tnixc]
past-maintainers: [*isabelroses]
phanpy:
name: Phanpy
link: https://phanpy.social
categories: [social_networking]
color: blue
current-maintainers: [*Guaxinim5573]
picrew:
name: Picrew
link: https://picrew.me
categories: [entertainment, productivity]
icon: picrew
color: yellow
current-maintainers: [*Meowcelinee]
pinterest:
name: Pinterest
link: https://www.pinterest.com
categories: [photo_and_video, entertainment, social_networking]
icon: pinterest
color: red
current-maintainers: [*nuexq]
past-maintainers: [*jn-sena]
planet-minecraft:
name: Planet Minecraft
link: https://planetminecraft.com
categories: [game]
color: green
current-maintainers: [*Nyameliaaaa]
porkbun:
name: Porkbun
link: https://porkbun.com
categories: [productivity]
icon: porkbun
color: pink
current-maintainers: [*uncenter]
pronouns.cc:
name: pronouns.cc
link: https://pronouns.cc
categories: [social_networking]
color: mauve
current-maintainers: [*comfysage]
past-maintainers: [*NeonGamerBot-QK]
pronouns.page:
name: Pronouns.page
link: https://pronouns.page
categories: [social_networking]
icon: pronounsdotpage
color: pink
current-maintainers: [*uncenter]
proton:
name: Proton
link: https://proton.me
categories: [productivity, email_client]
icon: protonmail
color: mauve
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
link: https://pypi.org
categories: [package_registry]
color: sapphire
current-maintainers: [*trinkey]
pythonanywhere:
name: PythonAnywhere
link: https://pythonanywhere.com
categories: [development]
icon: pythonanywhere
color: sapphire
current-maintainers: [*trinkey]
quizlet:
name: Quizlet
link: https://quizlet.com
categories: [education, productivity]
icon: quizlet
color: mauve
current-maintainers: [*spaghettiosareyummy]
raindrop:
name: Raindrop
link: https://app.raindrop.io
categories: [productivity]
color: blue
current-maintainers: [*thismoon]
react.dev:
name: React.dev
link: https://react.dev
categories: [development]
icon: react
color: sapphire
current-maintainers: [*RaiderHCPlay]
reddit:
name: Reddit
link: https://reddit.com
categories: [discussion_forum, social_networking]
color: red
icon: reddit
current-maintainers: []
past-maintainers: [*jayylmao, *rubyowo]
rentry.co:
name: Rentry.co
link: https://rentry.co
categories: [productivity]
color: text
current-maintainers: [*thismoon]
searchix:
name: Searchix
link: https://searchix.ovh
categories: [development, search_engine]
color: blue
current-maintainers: [*adamperkowski]
searxng:
name: SearXNG
link: https://github.com/searxng/searxng
categories: [search_engine]
icon: searxng
color: blue
current-maintainers: [*Sekki21956, *ryanccn]
seventv:
name: 7TV
link: https://7tv.app
categories: [entertainment, browser_extension]
color: sapphire
current-maintainers: [*mxgic1337]
shinigami-eyes:
name: Shinigami Eyes
link: https://shinigami-eyes.github.io
categories: [browser_extension, social_networking]
color: mauve
current-maintainers: [*sofiedotcafe]
snapchat-web:
name: Snapchat Web
link: https://web.snapchat.com
categories: [social_networking, photo_and_video]
icon: snapchat
color: yellow
current-maintainers: [*itzTheMeow]
spotify-web:
name: Spotify Web
link: https://open.spotify.com
categories: [music]
icon: spotify
color: green
current-maintainers: [*Tnixc]
stack-overflow:
name: Stack Overflow
link: https://stackoverflow.com
categories: [discussion_forum, wiki]
icon: stackoverflow
color: peach
current-maintainers: [*uncenter]
startpage:
name: Startpage
link: https://startpage.com
categories: [search_engine]
color: lavender
current-maintainers: []
past-maintainers: [*bartlibert]
status.cafe:
name: status.cafe
link: https://status.cafe
categories: [social_networking]
color: sapphire
current-maintainers: [*bunfluff]
stylus:
name: Stylus
link: https://github.com/openstyles/stylus
categories: [browser_extension]
color: teal
current-maintainers: [*uncenter]
substack:
name: Substack
link: https://substack.com
categories: [news_and_journalism]
icon: substack
color: peach
current-maintainers: [*uncenter]
past-maintainers: [*nekowinston]
syncthing:
name: Syncthing
link: https://syncthing.net
categories: [file_manager, productivity]
icon: syncthing
color: sapphire
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
link: https://tabnews.com.br
categories: [discussion_forum, social_networking]
color: text
current-maintainers: [*Guaxinim5573]
tldraw:
name: tldraw
link: https://www.tldraw.com
categories: [productivity]
icon: tldraw
color: text
note: This theme only changes how the colors appear on the tldraw canvas. Exported graphics **will not be Catppuccin-themed**.
current-maintainers: [*NekoDrone]
past-maintainers: [*GenShibe, *uncenter]
trinket:
name: Trinket
link: https://trinket.io
categories: [development]
color: blue
current-maintainers: [*trinkey]
tuta:
name: Tuta
link: https://tuta.com
categories: [email_client]
icon: tutanota
color: maroon
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
link: https://twitch.tv
categories: [entertainment, social_networking]
icon: twitch
color: mauve
current-maintainers: [*uncenter, *mxgic1337]
twitter:
name: Twitter
link: https://twitter.com
categories: [social_networking, discussion_forum]
color: blue
icon: twitter
note: Set Twitter's built-in theme to **Lights out** with the blue accent.
current-maintainers: [*watatomo]
vercel:
name: Vercel
link: https://vercel.com
categories: [development]
icon: vercel
color: text
supports:
next.js:
name: Next.js
link: https://nextjs.org
current-maintainers: [*ryanccn, *Dandraghas]
vikunja:
name: Vikunja
link: https://vikunja.io
categories: [productivity, note_taking]
icon: vikunja
color: blue
current-maintainers: [*Guaxinim5573]
web.dev:
name: web.dev
link: https://web.dev
categories: [development]
color: blue
current-maintainers: [*uncenter]
whatsapp-web:
name: WhatsApp Web
link: https://web.whatsapp.com
categories: [social_networking]
icon: whatsapp
color: green
current-maintainers: [*FrancoRav, *WalkQuackBack]
wikipedia:
name: Wikipedia
link: https://www.wikipedia.org
categories: [wiki, search_engine, productivity]
icon: wikipedia
color: text
current-maintainers: [*uncenter]
wikiwand:
name: Wikiwand
link: https://www.wikiwand.com
categories: [wiki, productivity]
icon: wikipedia
color: text
current-maintainers: [*Tnixc]
youtube:
name: YouTube
link: https://youtube.com
categories: [entertainment, social_networking, photo_and_video]
icon: youtube
color: red
current-maintainers: [*isabelroses, *uncenter]
past-maintainers: [*elkrien]
zen-browser-docs:
name: Zen Browser Docs
link: https://zen-browser.app
categories: [productivity]
color: peach
current-maintainers: [*ashish0kumar]
# yaml-language-server: $schema=userstyles.schema.json