Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions scripts/userstyles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,14 @@ userstyles:
icon: snapchat
color: yellow
current-maintainers: [*itzTheMeow]
snips-sh:
name: snips.sh
link: https://snips.sh
categories: [development]
icon: pastebin
color: blue
note: Accent color appearance options are overriden by this userstyle.
current-maintainers: [*42willow]
spotify-web:
name: Spotify Web
link: https://open.spotify.com
Expand Down
48 changes: 48 additions & 0 deletions styles/snips-sh/catppuccin.user.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* ==UserStyle==
@name snips.sh Catppuccin
@namespace github.com/catppuccin/userstyles/styles/snips-sh
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/snips-sh
@version 2026.03.16
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/snips-sh/catppuccin.user.less
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Asnips-sh
@description Soothing pastel theme for snips.sh
@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== */
@import "https://userstyles.catppuccin.com/lib/lib.less";

@-moz-document domain("snips.sh") {
:root {
@media (prefers-color-scheme: light) {
#catppuccin(@lightFlavor);
}
@media (prefers-color-scheme: dark) {
#catppuccin(@darkFlavor);
}
}

#catppuccin(@flavor) {
#lib.palette();
#lib.defaults();

--color-primary: @accent !important;
--color-surface-0: @base;
--color-surface-1: @mantle;
--color-border: @surface0;
--color-gray: @subtext0;
--color-blue: @blue;
--color-red: @red;
--color-amber: @yellow;
--color-green: @green;
--color-teal: @teal;
--color-purple: @mauve;
--color-pink: @pink;
--color-white: @text;
}
}

Loading