Skip to content

Kast: New message highlight by rustygentleman

Screenshot of Kast: New message highlight

Details

Authorrustygentleman

LicenseNo License

Categorykast

Created

Updated

Size781 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

New messages in the chat will be briefly highlighted.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Kast: New message highlight
@version      20220508.03.34
@namespace    userstyles.world/user/rustygentleman
@description  New messages in the chat will be briefly highlighted.
@author       rustygentleman
@license      No License
==/UserStyle== */

@-moz-document domain("kast.live") {
@keyframes highlight {
	100% {
        background-color: rgb(230 82 231 /00%);}
}
.party-chat-message-wrapper{
    background-color: rgb(230 82 231 / 70%);
    animation: highlight 5s ease 0s 1 forwards;
    /* For customizing, the animation syntax is as follows: */
    /* animation-name DURATION curve DELAY iterations direction */
    /* Delay is effectively how long it stays highlighted */
    /* Duration is how long it takes for the highlight to fade */
}
}

Reviews

No reviews yet.