Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions styles/bsky/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@name Bluesky Social Catppuccin
@namespace github.com/catppuccin/userstyles/styles/bsky
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/bsky
@version 0.0.4
@version 0.0.5
@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
Expand Down Expand Up @@ -61,6 +61,10 @@
/* generic text */
[style*="color: rgb(255, 255, 255)"] {
color: @text !important;
& when (@lookup = latte) {
/* fix button text in latte */
color: @base !important;
}
}

/* secondary text */
Expand Down Expand Up @@ -103,8 +107,18 @@
}

/* generic background color */
.css-175oi2r.r-13awgt0,
[style*="background-color: rgb(255, 255, 255)"],
[style*="background-color: rgb(0, 0, 0)"],
[style*="background-color: rgb(8, 10, 12)"] {
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 */
Expand Down Expand Up @@ -258,6 +272,10 @@
path[fill="#ffffff"],
path[fill="hsl(211, 20%, 100%)"] {
fill: @text;

& when (@lookup = latte) {
fill: @base;
}
}

/* more gray small icons (seems to only be the trash can/delete icon) */
Expand All @@ -271,6 +289,7 @@
}

/* 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"] {
Expand Down Expand Up @@ -356,10 +375,11 @@
}

/* manually set colorscheme */
html.colorMode--light {
html.theme--light {
#catppuccin(@lightFlavor, @accentColor);
}
html.colorMode--dark {
html.theme--dim,
html.theme--dark {
#catppuccin(@darkFlavor, @accentColor);
}
} /* /@-moz-document */