5 lines
207 B
JavaScript
5 lines
207 B
JavaScript
|
|
||
|
setTimeout(() => {
|
||
|
document.getElementById("body").style = "color: rgba(0, 0, 0, 255)"
|
||
|
}, 2500);
|
||
|
// you may not be able to transition text colour, there are other ways using animation so look into that
|