This is a small collection of tweaks to the timestamps, as example making timestamps sent in chat more readable, bring back the more detailed message timestamp and also show the exact timestamp of when a message got edited (with only css)((will replace the "edited" text))
Use Vencord or an equivalent client mod that allows you to install themes.
Paste the following link into your online theme links:
https://raw.githubusercontent.com/MEWPASCO/timestamp-tweaks/main/timestamps.css
Paste this into your QuickCSS (Or any non-Vencord equivalent) to make it a little easier:
Note
Must be at the top of your code, @import does not work otherwise - this is for all the @import code you might have - put it to the top!
/* timestamp-tweaks */
@import url('https://raw.githubusercontent.com/MEWPASCO/timestamp-tweaks/main/timestamps.css');
Alternatively if your client does not support online themes you can download the theme file found in this repository and put it into your theme folder.
Put this into your QuickCSS (Or any non-Vencord equivalent) to configure some behavior of this theme:
/* timestamp-tweaks */
:root{
/* the / <number> in the hsl code refers to the opacity */
--timestamp-border-color: hsl(120 100% 50% / 100%) !important;
}
Thanks to the creator of the wonderful website of HSL Color Picker, this will help you pick your HSL value/s!