pl-fe: adjust greentext color

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk
2025-02-24 23:16:48 +01:00
parent 658a33b768
commit c51141444f

View File

@ -88,7 +88,7 @@ function parseContent({ html, mentions, hasQuote, emojis }: IParsedContent, extr
replace(domNode) {
if (!(domNode instanceof Element)) {
if (greentext && domNode.data.startsWith('>')) {
return <span className='dark:text-accent-green text-green-600'>{domNode.data}</span>;
return <span className='dark:text-accent-green text-lime-600'>{domNode.data}</span>;
}
return;
}