o3. Spacy's Comments


Is it possible to change the color of the stat bar or does it only match the color of your toyhouse theme? 

change

<div class="progress my-1 bg-info">

to

<div class="progress my-1" style="color:#HEX">

and then replace HEX with whatever hex code


Alrighty! Thank you so much!!

how do i edit the stats? i cant figure it out </3

oh my god im so sorry i dont check this acc like at all DO YOU STILL NEED HELP

yes please <3

gonna cry because i forgot this account exists

Okay so take this piece of code:

                                <div class="my-2">
                                    <span class="text-uppercase" style="opacity: .6;">focused</span>
                                    <span class="text-uppercase pull-right" style="opacity: .6;">absentminded</span>
                                </div>
                           
                     <div class="progress my-1 bg-info">
                          <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width:50%; background:none; border-right:7px solid; height:8px;"></div>
                        </div>


The bars are actually out of a percentage. By default they're at 50%, or halfway. To change them, just change the number value in aria-valuenow="50" . 75 will push it further to the right, and 25 will push it back to the left. Any number works for these :)