This commit is contained in:
AUnicornWithNoLife 2021-04-13 22:18:47 +01:00
parent 6d76a336c5
commit e8b006ca13
2 changed files with 21 additions and 1 deletions

View File

@ -61,7 +61,7 @@
</table> </table>
</th> </th>
<th id='info'> <th id='info'>
<h2 id='score'>0 | 0</h2> <h1 id='score'>0 | 0</h1>
<br> <br>

20
src/theme.js Normal file
View File

@ -0,0 +1,20 @@
class theme
{
constructor(back, object, highlight, text)
{
this.back = back;
this.object = object;
this.highlight = highlight;
this.text = text;
}
}
function setTheme(name)
{
}
const themes =
{
'orange': theme('#231F20', '#ec5020', '#fa6d42', '#ffffff')
}