A small style to invert the main webpage for player stats.
Seems to work on the other pages too.
MajSoul Stats Dark by mcgravel
Details
Authormcgravel
LicenseNo License
Categorysapk.ch
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Tested on Chrome only
Source code
/* ==UserStyle==
@name MajSoul Stats Dark
@version 20230706.14.55
@namespace userstyles.world/user/mcgravel
@description A small style to invert the main webpage for player stats.
Seems to work on the other pages too.
@author mcgravel
@license No License
==/UserStyle== */
@-moz-document domain("amae-koromo.sapk.ch") {
/*
This single selector seems to change almost the entire page in one go
*/
.koromo
{
filter: invert(100%) hue-rotate(180deg) contrast(80%) !important;
}
/*
Invert the pie chart
*/
g.recharts-pie
{
font-weight: lighter !important;
filter: invert(100%) hue-rotate(180deg) brightness(125%) !important;
}
[role = "tooltip"],
div.recharts-tooltip-wrapper,
{
filter: invert(100%) hue-rotate(180deg) brightness(125%) !important;
}
path[name = "立直"],
text[name = "立直"]
{
fill: #e78d52;
}
path[name = "立直"].recharts-pie-label-line
{
stroke: #e78d52;
}
h4
{
font-weight: 100 !important;
}
header
{
box-shadow: #fff 0px 0px 100px 0px !important;
}
/*
Greys out the background
*/
body::before
{
filter: grayscale(100%) !important;
}
}