I'm probably being stupid but would be grateful for any help, as this is the first game I've made. I've got simple buttons in my game, and I'm trying to work out how to make the text white in them.
The rest of the text in the game is grey, outside the buttons, so at the moment the text inside the buttons is grey too -- which on a blue background doesn't look too good. I'm using Sugarcube 2.18.0.
The code I have at the moment is:
<div class="wrapper">
<span class="fixed-buttons">\
<<button "[[Button text is here]]">>...<</button>>
</span>
</div>
And in CSS:
body {
background-color: white;
color: #666666;
font-family: Times, Arial, Helvetica, sans-serif;
font-size: 125%;
}
.fixed-buttons button {
width: 30em;
}
.wrapper {
text-align: center;
}
Many thanks for your help!