Skip to content

Commit

Permalink
fix(modrinth): unthemed elements (#1291)
Browse files Browse the repository at this point in the history
  • Loading branch information
thismoon authored Sep 27, 2024
1 parent 37aa22c commit 870f498
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions styles/modrinth/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@name Modrinth Catppuccin
@namespace github.com/catppuccin/userstyles/styles/modrinth
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/modrinth
@version 1.2.8
@version 1.2.9
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/modrinth/catppuccin.user.css
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Amodrinth
@description Soothing pastel theme for Modrinth
Expand Down Expand Up @@ -72,6 +72,7 @@
--text-color: @text;
--color-base: @text;
--color-bg: @crust;
--color-secondary: @subtext0;
--color-ad-raised: @surface2;
--color-ad: @surface1;
--color-ad-highlight: @teal;
Expand Down Expand Up @@ -113,10 +114,6 @@
--color-warning-banner-side: @red;
--color-warning-banner-bg: fade(@red, 10%);
--color-warning-banner-text: @text;
--landing-green-label: @accent-color;
--landing-green-label-bg: fade(@accent-color, 10%);
--landing-blue-label: @blue;
--landing-blue-label-bg: fade(@blue, 10%);
--color-platform-fabric: @pink;
--color-platform-quilt: @mauve;
--color-platform-forge: @blue;
Expand All @@ -132,6 +129,20 @@
--color-platform-waterfall: @blue;
--color-platform-sponge: @yellow;
--color-button-border: fade(@crust, 20%);
--color-tooltip-bg: @surface1;
--color-tooltip-text: @subtext1;
--landing-green-label: @accent-color;
--landing-green-label-bg: fade(@accent-color, 10%);
--landing-blue-label: @blue;
--landing-color-heading: @text;
--landing-color-subheading: @subtext0;
--landing-border-color: @overlay0;
--landing-blue-label-bg: fade(@blue, 10%);
--landing-border-gradient: linear-gradient(
to bottom right,
@overlay0,
@surface2
);
}
// homepage
.blob-demonstration,
Expand Down Expand Up @@ -165,6 +176,16 @@
border-color: @text transparent transparent;
color: @text;
}
// header button hover
.btn-wrapper:hover {
a,
button {
--tw-brightness: none !important;
}
}
.nuxt-loading-indicator {
background: @accent-color!important;
}
}
}

Expand Down

0 comments on commit 870f498

Please sign in to comment.