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 @@ -74,6 +74,7 @@ collaborators:
- &ImenaOphelia ImenaOphelia
- &koibtw koibtw
- &TheAnonymousCrusher TheAnonymousCrusher
- &DontDDoS DontDDoS

userstyles:
advent-of-code:
Expand Down Expand Up @@ -804,6 +805,13 @@ userstyles:
categories: [productivity]
color: blue
current-maintainers: [*thismoon]
radarr:
name: Radarr
link: https://radarr.video/
categories: [entertainment]
color: peach
current-maintainers: [*DontDDoS]
note: This is ment to theme self-hosted instances of Radarr, not radarr.video
react.dev:
name: React.dev
link: https://react.dev
Expand Down
65 changes: 65 additions & 0 deletions styles/radarr/catppuccin.user.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/* ==UserStyle==
@name Radarr Catppuccin
@namespace github.com/catppuccin/userstyles/styles/radarr
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/radarr
@version 2000.01.01
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/radarr/catppuccin.user.less
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Aradarr
@description Soothing pastel theme for Radarr
@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 regexp("https?://.*radarr(?!\\.video).*") {
:root {
@media (prefers-color-scheme: light) {
#catppuccin(@lightFlavor);
}
@media (prefers-color-scheme: dark) {
#catppuccin(@darkFlavor);
}
}


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

body {
--successColor: @green;
--dangerColor: @red;
--warningColor: @peach;
--queueColor: @mauve;
--primaryColor: @sapphire;
--borderColor: @crust;
--inputBackgroundColor: @mantle;
--textColor: @text;
--sidebarColor: @text;
--toolbarColor: @text;
--toolbarLabelColor: @text;
}

[class^="PageContent"] {
background-color: @base;
}

[class^="PageHeader"], [class^="PageSidebar"] {
background-color: @crust;
}

[class^="PageToolbar"], [class^="MovieIndexPoster-title"], [class^="MovieCreditPoster-title"], [class*="Table"], [class^="Card"], [class^="AddNewMovie-searchIconContainer"] {
background-color: @mantle;
}

[class^="MovieDetails"] {
color: @text;
}
}
}