Make the project status' have colour again.
Modrinth Project Status Colors by TheClashFruit
Details
AuthorTheClashFruit
LicenseCC BY-SA 4.0
Categorymodrinth.com
Created
Updated
Size656 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name modrinth.com
@version 2024.9.3
@namespace https://userstyles.world/user/TheClashFruit
@description Make the project status' have colour again.
@author TheClashFruit
@license CC BY-SA 4.0
==/UserStyle== */
@-moz-document domain("modrinth.com") {
.type--draft {
color: var(--color-gray)
}
.type--processing {
color: var(--color-purple)
}
.type--approved {
color: var(--color-brand)
}
.type--rejected {
color: var(--color-red)
}
.type--archived {
color: var(--color-orange)
}
.type--private {
color: var(--color-blue)
}
}