Skip to content
Draft
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
7 changes: 7 additions & 0 deletions scripts/userstyles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ collaborators:
- &koibtw koibtw
- &TheAnonymousCrusher TheAnonymousCrusher
- &42willow 42willow
- &scarcekoi scarcekoi

userstyles:
advent-of-code:
Expand Down Expand Up @@ -702,6 +703,12 @@ userstyles:
icon: openmediavault
color: sky
current-maintainers: [*Gandalf-the-Blue]
organism-earth-library:
name: Organism Earth Library
link: https://organism.earth/library
categories: [wiki]
color: mauve
current-maintainers: [*scarcekoi]
paste.rs:
name: paste.rs
link: https://paste.rs
Expand Down
75 changes: 75 additions & 0 deletions styles/organism-earth-library/catppuccin.user.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/* ==UserStyle==
@name Organism Earth Library Catppuccin
@namespace github.com/catppuccin/userstyles/styles/organism-earth-library
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/organism-earth-library
@version 2000.01.01
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/organism-earth-library/catppuccin.user.less
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Aorganism-earth-library
@description Soothing pastel theme for Organism Earth Library
@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 url-prefix("https://organism.earth/library"), url-prefix("https://www.organism.earth/library") {
:root {
@media (prefers-color-scheme: light) {
#catppuccin(@lightFlavor);
}
@media (prefers-color-scheme: dark) {
#catppuccin(@darkFlavor);
}
}

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

--col-bg: @base;
--col-bg-box: @mantle;
--col-bg-box-bg: @crust;
--col-text: @text;
--col-text-inverted: @base;
--col-accent: @accent;
--col-highlight: darken(@accent, 10%);
--col-header-bg: @accent;
--col-header-button: darken(@accent, 10%);
--col-quote: fade(@accent, 15%);
--col-quote-text: @accent;
--col-hoverbox-bg: @surface0;
--col-index-docmeta-title-bg: fade(@accent, 80%);
--col-index-docmeta-bg: @mantle;
--col-blockquote-link: @accent;

.topic-card, .document-meta-left {
color: @base;
}

.active-button {
color: @base !important;
}

.aside {
color: @subtext0;
}

#toc-v2 h1, .chapter-header {
border-top-color: @surface0;
border-bottom-color: @surface0;
}

#stats, .visitorCounter {
color: @subtext0;
}

#book-icon {
filter: @base-filter
}
}
}
Loading