-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
catppuccin.user.css
618 lines (528 loc) Β· 19.3 KB
/
catppuccin.user.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
/* ==UserStyle==
@name Bluesky Social Catppuccin
@namespace github.com/catppuccin/userstyles/styles/bsky
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/bsky
@version 0.1.1
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/bsky/catppuccin.user.css
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Absky
@description Soothing pastel theme for Bluesky Social
@author Catppuccin
@license MIT
@preprocessor less
@var select lightFlavor "Light Flavor" ["latte:Latte*", "frappe:FrappΓ©", "macchiato:Macchiato", "mocha:Mocha"]
@var select darkFlavor "Dark Flavor" ["latte:Latte", "frappe:FrappΓ©", "macchiato:Macchiato", "mocha:Mocha*"]
@var select accentColor "Accent" ["rosewater:Rosewater", "flamingo:Flamingo", "pink:Pink", "mauve:Mauve*", "red:Red", "maroon:Maroon", "peach:Peach", "yellow:Yellow", "green:Green", "teal:Teal", "blue:Blue", "sapphire:Sapphire", "sky:Sky", "lavender:Lavender", "subtext0:Gray"]
==/UserStyle== */
@-moz-document domain('bsky.app') {
@media (prefers-color-scheme: light) {
html.colorMode--system {
#catppuccin(@lightFlavor, @accentColor);
}
}
@media (prefers-color-scheme: dark) {
html.colorMode--system {
#catppuccin(@darkFlavor, @accentColor);
}
}
html.theme--light {
#catppuccin(@lightFlavor, @accentColor);
}
html.theme--dim,
html.theme--dark {
#catppuccin(@darkFlavor, @accentColor);
}
#catppuccin(@lookup, @accent) {
@rosewater: @catppuccin[@@lookup][@rosewater];
@flamingo: @catppuccin[@@lookup][@flamingo];
@pink: @catppuccin[@@lookup][@pink];
@mauve: @catppuccin[@@lookup][@mauve];
@red: @catppuccin[@@lookup][@red];
@maroon: @catppuccin[@@lookup][@maroon];
@peach: @catppuccin[@@lookup][@peach];
@yellow: @catppuccin[@@lookup][@yellow];
@green: @catppuccin[@@lookup][@green];
@teal: @catppuccin[@@lookup][@teal];
@sky: @catppuccin[@@lookup][@sky];
@sapphire: @catppuccin[@@lookup][@sapphire];
@blue: @catppuccin[@@lookup][@blue];
@lavender: @catppuccin[@@lookup][@lavender];
@text: @catppuccin[@@lookup][@text];
@subtext1: @catppuccin[@@lookup][@subtext1];
@subtext0: @catppuccin[@@lookup][@subtext0];
@overlay2: @catppuccin[@@lookup][@overlay2];
@overlay1: @catppuccin[@@lookup][@overlay1];
@overlay0: @catppuccin[@@lookup][@overlay0];
@surface2: @catppuccin[@@lookup][@surface2];
@surface1: @catppuccin[@@lookup][@surface1];
@surface0: @catppuccin[@@lookup][@surface0];
@base: @catppuccin[@@lookup][@base];
@mantle: @catppuccin[@@lookup][@mantle];
@crust: @catppuccin[@@lookup][@crust];
@accent-color: @catppuccin[@@lookup][@@accent];
color-scheme: if(@lookup = latte, light, dark);
// fix general site background - this applies to the <html> element
background-color: @base;
::selection {
background-color: fade(@accent-color, 30%);
}
input,
textarea {
&::placeholder {
color: @subtext0 !important;
}
}
--text: @text;
--background: @base;
--backgroundLight: @base;
/* generic text */
[style*="color: rgb(255, 255, 255)"],
[style*="color: rgb(241, 243, 245)"]//,
/* [style*="color: rgb(11, 15, 20)"] this breas on dark */ {
color: @text !important;
& when (@lookup = latte) {
/* fix button text in latte */
color: @base !important;
}
}
/* some background color of follow button + hover */
[style*="background-color: rgb(241, 243, 245)"] {
background-color: if(@lookup = latte, @crust, @text) !important;
}
[style*="color: rgb(11, 15, 20)"] {
color: if(@lookup = latte, @text, @crust) !important;
}
/* secondary text */
[style*="rgb(169, 183, 197)"],
[style*="rgb(140, 158, 178)"],
[style*="rgb(84, 110, 138)"],
[style*="rgb(66, 87, 108)"] {
color: @subtext1 !important;
}
// white bottons on the theme/color mode selection in settings
div[style*="background-color: rgb(197, 207, 217)"], // dark
div[style*="background-color: rgb(201, 210, 219)"], // dim
div[style*="background-color: rgb(46, 63, 81)"] // light
{
background-color: @text !important;
> div {
color: @crust !important;
}
}
/* generic blue inline (e.g. link text, etc) */
[style*="color: rgb(16, 131, 254)"], // dark
[style*="color: rgb(32, 139, 254)"] // dim
{
color: @accent-color !important;
}
/* generic blue inline underline (links) */
[style*="text-decoration-color: rgb(16, 131, 254)"], // dark
[style*="text-decoration-color: rgb(32, 139, 254)"] // dim
{
text-decoration-color: @accent-color !important;
}
/* generic blue inline bg color (e.g. notification count) */
[style*="background-color: rgb(16, 131, 254)"], // dark
[style*="background-color: rgb(32, 139, 254)"] // dim
{
background-color: @accent-color !important;
/* notification count contrast fix, also chat message contrast fix (> div) */
&[style*="color: rgb(241, 243, 245)"],
&[style*="color: rgb(255, 255, 255)"],
> div {
color: @crust !important;
}
/* icon color fix */
path[fill="#ffffff"],
path[fill="hsl(211, 20%, 95.3%)"] {
fill: @crust!important;
}
}
/* sending/pending/failed direct message */
[style*="background-color: rgb(1, 64, 132)"] {
background-color: fadeout(@accent-color, 70%) !important;
}
/* blue svg inline */
[stroke="hsl(211, 99%, 53%)"],
[stroke="#0085ff"] {
stroke: @accent-color;
}
[fill="hsl(211, 99%, 53%)"],
[fill="hsl(211, 99%, 56%)"],
[fill="#0085ff"] {
fill: @accent-color;
}
/* a lot of blue things (buttons etc) */
.r-wzwllv,
div[style*="background-color: rgb(0, 133, 255)"] {
background-color: @accent-color !important;
/* notification count contrast fix, also chat message contrast fix (> div) */
&[style*="color: rgb(241, 243, 245)"],
> div {
color: @crust !important;
}
}
/* subscribe to labeler button */
button[data-testid="toggleSubscribeBtn"] {
> div {
background-color: @mauve !important;
> div {
color: @crust !important;
}
}
}
/* direct message "failed to send" text */
span[style*="color: rgb(205, 10, 55)"] {
color: @red !important;
}
/* red button text (delete my account) */
[style*="color: rgb(251, 162, 178)"] {
color: @red !important;
}
/* red button (delete, etc) */
button[style*="background-color: rgb(244, 11, 66)"], // dark, light (same color)
button[style*="background-color: rgb(246, 60, 103)"], // dark (hover)
button[style*="background-color: rgb(245, 41, 88)"], // dim
button[style*="background-color: rgb(247, 84, 122)"], // dim (hover)
button[style*="background-color: rgb(205, 10, 55)"] // light (hover)
{
background-color: @red !important;
&:hover {
background-color: fade(@red, 70%) !important;
}
// text color
> div {
color: @crust !important;
}
}
/* delete account button */
[style^="background-color: rgb(79, 3, 20)"] {
background-color: @red !important;
}
path[fill="#fba2b2"] {
fill: @crust;
}
/* generic background color */
[style*="background-color: rgb(255, 255, 255)"],
[style*="background-color: rgb(0, 0, 0)"],
[style*="background-color: rgb(22, 30, 39)"] {
background-color: @base !important;
& when (@lookup = latte) {
/* fix button colors in latte */
[style*="background-color: rgb(0, 0, 0)"] {
background-color: @text !important;
}
}
}
/* secondary background color */
[style*="background-color: rgb(20, 25, 31)"], /* dark? */
[style*="background-color: rgb(20, 27, 35)"], /* dark */
[style*="background-color: rgb(30, 41, 54)"] /* dim */ {
background-color: @mantle !important;
}
/* secondary background color when active (e.g. search bar, hovering some buttons like cancel) */
[style*="background-color: rgb(28, 39, 50)"], // dark
[style*="background-color: rgb(38, 53, 68)"] // dim
{
background-color: @crust !important;
}
/* some sort of tertiary background color with a slight accent */
[style*="background-color: rgb(0, 25, 51)"] {
background-color: fadeout(@accent-color, 70%) !important;
}
/* loading circle */
circle[style^="stroke: rgb(25, 118, 210)"] {
stroke: @accent-color !important;
}
/* wide site: new post button (w text) */
button[style*="background-color: rgb(16, 131, 254)"], // dark
button[style*="background-color: rgb(52, 150, 254)"], // dark (hover)
button[style*="background-color: rgb(32, 139, 254)"], // dim
button[style*="background-color: rgb(76, 162, 254)"] // dim (hover)
{
background-color: @accent-color !important;
&:hover {
background-color: fade(@accent-color, 70%) !important;
}
> div {
color: @crust !important;
}
svg > path {
fill: @crust !important;
}
}
/* borders */
.css-175oi2r {
border-color: @surface0 !important;
}
/* fix selected tab bottom border issue caused by selector above */
.css-175oi2r[style*="border-bottom-color: rgb(16, 131, 254)"] {
border-bottom-color: @accent-color !important;
}
/* fixes the bottom border on tabs (timeline) having a darker color */
.r-oucylx {
border-bottom-color: @base !important;
}
/* current selected tab (acc page) !! KEEP THIS BELOW ABOVE DEFINITION !! */
[style*="border-color: rgb(255, 255, 255)"] {
border-color: @accent-color !important;
}
/* settings highlight thing */
[style="background-color: rgb(38, 39, 45)"] {
background-color: @crust !important;
}
/* thin site: bluesky text */
.r-yovm8p {
color: @blue;
}
/* empty profile banner */
.r-wuyfte {
background-color: @blue;
}
/* "invalid handle" warning */
[style*="color: rgb(236, 72, 104); border-color: rgb(209, 16, 67)"] {
color: @red !important;
border-color: @red !important;
}
/* end of feed text */
.r-1521r3q {
color: @overlay1;
}
/* mobile side drawer */
[data-testid="drawer"] {
background-color: @base;
}
/* feedback */
.r-m7buhn {
background-color: @blue;
}
/* save, report, post modal button */
[data-testid="sendReportBtn"],
[data-testid="composerPublishBtn"],
[data-testid="editProfileSaveBtn"] {
background: unset !important;
/* "save changes" button in edit profile */
> div[style*="background-image: linear-gradient(94.0544deg, rgb(90, 113, 250), rgb(0, 133, 255))"] {
background: @accent-color !important;
}
/* fix contrast issues */
> div,
> div > div {
color: @crust !important;
}
}
[data-testid="saveBtn"] {
> div[style*="background-image: linear-gradient"] {
background: unset !important;
background-color: @accent-color !important;
> div {
color: @crust !important;
}
}
}
// toast notifications (e.g. "copied to clipboard")
.r-17c3jg3:has(> div[dir="auto"]) {
background-color: @crust !important;
.r-jwli3a {
color: @text !important;
}
> svg > path {
fill: @text !important;
}
}
/* draft "Discard" button */
[style^="background-color: rgb(209, 16, 67)"] {
background-color: @red !important;
}
/* the round gradient post button in the bottom right when the page is thinner than usual */
[data-testid="composeFAB"] > div {
background: unset !important;
background-color: @accent-color !important;
// fix contrast (inner symbol)
.r-jwli3a {
color: @crust !important;
}
}
/* blue text only button (e.g. cancel post button) */
div[style*="color: rgb(52, 150, 254)"],
div[style*="color: rgb(76, 162, 254)"] {
color: @accent-color !important;
}
/* text color when writing a post */
.ProseMirror,
.ProseMirror-dark {
color: @text;
}
/* some button background color (when hovering) */
[style*="background-color: rgb(0, 44, 91)"],
[style*="background-color: rgb(19, 63, 109)"] {
background-color: fade(@accent-color, 30%) !important;
}
/* several white buttons */
button[style*="background-color: rgb(255, 255, 255)"]
when
not
(@lookup = latte) {
background-color: @text !important;
}
/* the white buttons text */
[style*="color: rgb(0, 0, 0)"] {
color: @crust !important;
}
/* replace dark fill icons with crust ones */
path[fill="#000000"] {
fill: @crust;
}
/* fixes a contrast issue when the suggested follows button is enabled (very ugly selector) */
button[data-testid="suggestedFollowsBtn"][style*="background-color: rgb(255, 255, 255)"]
> svg
> path {
fill: @base !important;
}
/* text inside most buttons */
button > div > div[style~="color: rgb(0, 0, 0)"] {
color: @base !important;
}
/* search bar text */
[role="search"],
[data-testid="confirmCodeInput"] {
--placeholderTextColor: @subtext1 !important;
}
/* search bar icon */
svg[style^="color: rgb(141, 142, 150)"] {
color: @subtext1 !important;
}
/* small icons */
path[fill="#ffffff"],
path[fill="hsl(211, 20%, 95.3%)"] {
fill: @text;
& when (@lookup = latte) {
fill: @base;
}
}
/* more gray small icons (seems to only be the trash can/delete icon) */
path[fill="#8D8E96"] {
fill: @subtext1;
}
/* settings button at the top of the timeline, hashtag button/icon at top of timeline */
path[fill="hsl(211, 24%, 70%)"],
path[fill="hsl(211, 20%, 62.4%)"] {
fill: @subtext1;
}
/* x invite codes available icon */
div[style*="background-color: rgb(191, 225, 255)"],
div[style*="background-color: rgb(1, 37, 97)"] {
background-color: fadeout(@accent-color, 70%) !important;
> svg > path[fill="#52acfe"] {
fill: @accent-color;
}
}
/* likes, reposts and comment counts/buttons under posts, maybe more */
path[fill="hsl(211, 20%, 53%)"],
[style*="color: rgb(111, 134, 159)"] {
color: @subtext1 !important;
fill: @subtext1 !important;
}
/* heart/like */
.r-84gixx,
.r-1i89l9k,
div[style*="color: rgb(236, 72, 153)"],
button[data-testid="toggleLikeBtn"] > svg:has(path[fill^="hsl(346,"]) // feed like button
{
color: @red !important;
> path {
fill: @red !important;
}
}
/* repost */
.r-5ld2xk,
[style*="color: rgb(69, 237, 159)"] {
color: @green !important;
> path {
fill: @green !important;
}
}
/* tiny people icon on post view ("Everybody can reply") */
path[fill="hsl(211, 24%, 43.6%)"],
/* icon above "you have no lists" */
path[fill="hsl(211, 24%, 34.2%)"] {
fill: @subtext0;
}
/* onboarding: continue/next button */
[data-testid="continueBtn"] {
background-color: @accent-color !important;
}
[data-testid="continueBtn"] > div > div {
color: @base !important;
}
[data-testid="continueBtn"] > div > svg > path {
fill: @base !important;
}
/* pretty self explanatory, user mentions in the post create modal */
.mention {
color: @accent-color;
}
/* mentions in the notification tab (highlighted notifications) */
div[style*="background-color: rgb(0, 17, 36)"], // dark
div[style*="background-color: rgb(21, 41, 63)"], // dim
div[style*="background-color: rgb(240, 247, 255)"] // light
{
background-color: fadeout(@accent-color, 70%) !important;
.css-175oi2r:not([role="checkbox"] *) {
background-color: transparent !important;
}
}
/* generic blue background color inline (used for buttons in notifications tab) */
button[style*="background-color: rgb(0, 133, 255)"] {
background-color: @accent-color !important;
}
/* contrast fix for above */
button[style*="background-color: rgb(0, 133, 255)"] > div > div {
color: @base !important;
}
/* other button in notifications tab, inner text */
div[style*="color: rgb(82, 172, 254)"] {
color: @accent-color !important;
}
/* "No notifications yet!" text in the notifications tab */
div[style*="color: rgb(141, 142, 150)"] {
color: @subtext0 !important;
}
/* login: wrong password highlight */
.r-w7hjet {
background-color: @red;
}
/* please verify your email popup (green checkmark) */
circle[fill="#20BC07"] {
fill: @green;
}
/* toggle circle */
[style*="background-color: rgb(185, 185, 193)"] {
background-color: @overlay2 !important;
}
/* skeletons */
.r-kdyh1x,
.r-cpet4d {
&[style*="background-color: rgb(20, 27, 35);"] {
background-color: @surface0 !important;
}
}
/* thread lines */
div[style*="background-color: rgb(46, 63, 81)"].r-m5arl1 {
background: @surface1 !important;
}
line[stroke="hsl(211, 28%, 24.8%)"][stroke-width="2"] {
stroke: @surface1 !important;
}
circle[fill="hsl(211, 28%, 24.8%)"][r="1.5"] {
fill: @surface1 !important;
}
}
}
/* prettier-ignore */
@catppuccin: {
@latte: { @rosewater: #dc8a78; @flamingo: #dd7878; @pink: #ea76cb; @mauve: #8839ef; @red: #d20f39; @maroon: #e64553; @peach: #fe640b; @yellow: #df8e1d; @green: #40a02b; @teal: #179299; @sky: #04a5e5; @sapphire: #209fb5; @blue: #1e66f5; @lavender: #7287fd; @text: #4c4f69; @subtext1: #5c5f77; @subtext0: #6c6f85; @overlay2: #7c7f93; @overlay1: #8c8fa1; @overlay0: #9ca0b0; @surface2: #acb0be; @surface1: #bcc0cc; @surface0: #ccd0da; @base: #eff1f5; @mantle: #e6e9ef; @crust: #dce0e8; };
@frappe: { @rosewater: #f2d5cf; @flamingo: #eebebe; @pink: #f4b8e4; @mauve: #ca9ee6; @red: #e78284; @maroon: #ea999c; @peach: #ef9f76; @yellow: #e5c890; @green: #a6d189; @teal: #81c8be; @sky: #99d1db; @sapphire: #85c1dc; @blue: #8caaee; @lavender: #babbf1; @text: #c6d0f5; @subtext1: #b5bfe2; @subtext0: #a5adce; @overlay2: #949cbb; @overlay1: #838ba7; @overlay0: #737994; @surface2: #626880; @surface1: #51576d; @surface0: #414559; @base: #303446; @mantle: #292c3c; @crust: #232634; };
@macchiato: { @rosewater: #f4dbd6; @flamingo: #f0c6c6; @pink: #f5bde6; @mauve: #c6a0f6; @red: #ed8796; @maroon: #ee99a0; @peach: #f5a97f; @yellow: #eed49f; @green: #a6da95; @teal: #8bd5ca; @sky: #91d7e3; @sapphire: #7dc4e4; @blue: #8aadf4; @lavender: #b7bdf8; @text: #cad3f5; @subtext1: #b8c0e0; @subtext0: #a5adcb; @overlay2: #939ab7; @overlay1: #8087a2; @overlay0: #6e738d; @surface2: #5b6078; @surface1: #494d64; @surface0: #363a4f; @base: #24273a; @mantle: #1e2030; @crust: #181926; };
@mocha: { @rosewater: #f5e0dc; @flamingo: #f2cdcd; @pink: #f5c2e7; @mauve: #cba6f7; @red: #f38ba8; @maroon: #eba0ac; @peach: #fab387; @yellow: #f9e2af; @green: #a6e3a1; @teal: #94e2d5; @sky: #89dceb; @sapphire: #74c7ec; @blue: #89b4fa; @lavender: #b4befe; @text: #cdd6f4; @subtext1: #bac2de; @subtext0: #a6adc8; @overlay2: #9399b2; @overlay1: #7f849c; @overlay0: #6c7086; @surface2: #585b70; @surface1: #45475a; @surface0: #313244; @base: #1e1e2e; @mantle: #181825; @crust: #11111b; };
}
// vim:ft=less