Comments on [ Music Player Tutorial F2U ] All Comments

either I have messed something up, or Toyhouse is breaking something. The colored player looks perfect on Circlejourney's editor, but the color vanishes on toyhouse. I'm not quite sure what's wrong

unknown.png

(Toyhouse on the left, Circle Journey on the right)

<!--SONG 1-->
    <p class="mb-1"><span style="font-variant:small-caps;">Paint the Town Black by pragmaticNihilist</span></p>
    <!--AUDIO-->
    <audio controls="SONG URL" style="background:rgb(194, 80, 181, 0.4);padding:2px; width:290px;height:30px;border-radius:10px;"><source src="https://cdn.discordapp.com/attachments/837417309823041537/844962614173237258/HSVE_-_Paint_The_Town_Black.mp3"></audio> <!--audio end-->
    <!--song 1 end-->


Toyhouse is a bit special yeah, not everything that work in the editor work, they do block some of the coding options sadly ;v;
here it seem they don't like the 'opacity' number for the rgb code ;v; > rgb(194, 80, 181, 0.4)


with just rgb(194, 80, 181) it work thought !
for a similar effect as what you were trying to do you can always make the color darker I guess... rgb(94, 33, 87)
or using style="opacity:0.40 but it make the whole player transparent ;;w;;
I don't know a better solution sadly.. but maybe there is one ! I'm not that much of a pro in html so...

so here the working version anyway :


<!--SONG 1--><p class="mb-1">
<span style="font-variant:small-caps;">Paint the Town Black by pragmaticNihilist</span></p>
<!--AUDIO--><audio controls="SONG URL" style="background:rgb(194, 80, 181) ;padding:2px; width:290px;height:30px;border-radius:10px;"><source src="https://cdn.discordapp.com/attachments/837417309823041537/844962614173237258/HSVE_-_Paint_The_Town_Black.mp3"></audio><!--audio end-->
<!--song 1 end-->

huh, weird. thank you for your help though ^-^