Last active
June 14, 2024 21:39
-
-
Save Le0X8/3ffd45c71468f573b0bab8aa87721c42 to your computer and use it in GitHub Desktop.
LeetCode stats styling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--bg-0: #0000; /* Brightest */ | |
--bg-1: #0000; | |
--bg-2: #0000; | |
--bg-3: #0000; /* Darkest */ | |
--text-0: #23aeb5; /* Darkest */ | |
--text-1: #23aeb5; | |
--text-2: #23aeb5; | |
--text-3: #23aeb5; /* Brightest */ | |
--color-0: #23aeb5; /* "Ring" Color */ | |
--color-1: #16a34a; /* "Easy" Color */ | |
--color-2: #facc15; /* "Medium" Color */ | |
--color-3: #dc2626; /* "Hard" Color */ | |
} | |
/* Extra Stuffs. for example, Change the color of LeetCode icon. */ | |
#C { | |
fill: #23aeb5; | |
} | |
#L { | |
fill: #1b6da4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment