Miscellaneous things I've made
Here's some things I've made that don't really fit any other website category. They may or may not be useful to you.
Contents:
Dark theme for Neocities
I made this dark theme for Neocities because there was nothing of the sort available. It's a bit inconsistent, and it won't work with their HTML tutorial, but it mostly works otherwise, so if you love having working eyesight, try installing it.
To install this on your browser, download Stylus or a similar add-on, then navigate over to the theme's page at userstyles.world, and click Install. It should also appear if you use the functions inside Stylus to search themes for a specific website.
This theme also sets your font to Comic Sans. If you don't want that, edit out the line that says font-family: "Comic Sans MS", sans-serif;.
        Neocities Dark & Purple theme. Download from userstyles.world
    I made a color picker
This one was made for a very specific purpose. The goal was to provide an easy way to convert between hex and decimal colors for use with Nuclear Throne's lang.ini files.
Basic Discord debloater theme
Discord sucks for a variety of reasons, and one of those reasons is the insistence on purchasing their stupid Nitro subscription, by littering most of the program with buttons and other elements that take up precious space. I think one of the worst offenders is that useless title bar at the top, which, sadly, also hosts the Inbox button. Whoever designed that piece of shit is a troglodyte.
        Looks cleaner don't it?
    This theme will do the following:
- Set the font to Comic Sans and the code font to Comic Mono (you need these installed for it to work)
 - Reset custom user fonts (the ones purchased with Nitro)
 - Hide clan tags
 - Remove the useless title bar (but that'll also remove the Inbox button; press Ctrl+I to bring it up instead)
 - Hide the Nitro, Shop, & Quests buttons from the friends list
 - Hide custom server banners and server boost counter
 - Remove the Nitro gift button and the start activity button from the message bar
 
This theme won't remove their periodic fullscreen Nitro ads, and at the moment I have no idea how to remove custom profile effects. If you know how, try contacting me on Matrix or post on my Neocities profile. You'll find my Matrix ID on my About page.
To install this on your desktop client, you'll need to install OpenAsar, Vencord, or something similar that allows you to set custom CSS for your client. I imagine that for the web client, Stylus would work.
Copy and paste this code where relevant (I use OpenAsar, it has a "Theming" section where this would go):
/* Add your own Custom CSS here.
Have a theme you want to use? Copy and paste the contents here.
You need to restart (click the restart button) after changing. */
:root {
    --font-primary: "Comic Sans MS", "Comic Neue", "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display: "Comic Sans MS", "Comic Neue", "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-headline: "Comic Neue Angular", "ABC Ginto Nord", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-code: "Comic Mono", Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
    --custom-emoji-size-jumbo-emoji: 4.5rem;
}
:root:lang(bg),
:root:lang(el),
:root:lang(ru),
:root:lang(uk) {
    --font-primary: "Comic Sans MS", "Comic Neue", "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display: "Comic Sans MS", "Comic Neue", "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-headline: "Comic Neue Angular", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-code: "Comic Mono", Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace
}
/* Hide clan tags */
[class^="chipletContainer"], [class^="clanTag"] {
    display: none;
}
/* Set custom user fonts back to default */
[class^="message"] span[class^="username"], .user-profile-popout *, .user-profile-modal-v2 * {
    font-family: var(--font-primary) !important;
}
/* Remove that stupid useless titlebar */
/* Note that this will get rid of the useful Inbox button, press Ctrl+I to bring it up instead */
/* The weird positioning code is a hack that lets the inbox open on the right hand side of the screen instead of the left side */
[class^="base"] {
    grid-template-areas: "guildsList notice notice"
                         "guildsList channelsList page";
    grid-template-rows: [titleBarEnd] min-content [noticeEnd] 1fr [end];
}
[class^="base_"] [class^="bar_"] {
    position: fixed;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    user-select: none;
    pointer-events: none;
    opacity: 0;
}
/* Hide nitro, shop, & quests items from friends list */
[class^="privateChannels"] div:nth-child(2) div:nth-child(3),
[class^="privateChannels"] div:nth-child(2) li:nth-child(4),
[class^="privateChannels"] div:nth-child(2) span:nth-child(5),
[class^="privateChannels"] div:nth-child(2) div:nth-child(6) {
    display: none;
}
/* Hide server banners */
[class^="animatedContainer"],
[class^="content"][aria-label="Channels"] > div:nth-child(1),
[class^="content"][aria-label="Channels"] > div:nth-child(2),
[class^="content"][aria-label="Channels"] > div:nth-child(3) {
    display: none;
}
/* Reset height of channel list to compensate for the previous change */
[class^="content"][aria-label="Channels"] {
    height: initial !important;
}
/* Hide bloat buttons in the message bar */
[class^="channelTextArea"] [class^="scrollableContainer"] div [class^="buttons"] [class^="container"],
[class^="channelTextArea"] [class^="scrollableContainer"] div [class^="buttons"] [class^="channelAppLauncher"] {
    display: none;
}
My old botb.club website
I found this old website on archive.org after deeming it lost forever. It's definitely a product of its time, there's a few things you might find not OK in there. I've grown a lot since then.