started work on theme selector
This commit is contained in:
parent
c2f219316f
commit
3951205c47
@ -73,6 +73,14 @@
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
<button onmousedown="reset();" id='reset'>Reset</button>
|
<button onmousedown="reset();" id='reset'>Reset</button>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<select name="Theme" id="theme-sel">
|
||||||
|
|
||||||
|
</select>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
17
src/theme.js
17
src/theme.js
@ -18,6 +18,23 @@ const themes =
|
|||||||
'greyscale': new theme('#000000', '#555555', '#AAAAAA', '#FFFFFF', '#CCCCCC', '#333333', '#CCCCCC')
|
'greyscale': new theme('#000000', '#555555', '#AAAAAA', '#FFFFFF', '#CCCCCC', '#333333', '#CCCCCC')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const themenames =
|
||||||
|
[
|
||||||
|
'orange',
|
||||||
|
'greyscale'
|
||||||
|
]
|
||||||
|
|
||||||
|
function setupTheme()
|
||||||
|
{
|
||||||
|
themenames.forEach(function(val)
|
||||||
|
{
|
||||||
|
var option = document.createElement("option");
|
||||||
|
option.text = val;
|
||||||
|
|
||||||
|
themesel.add(option);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function setTheme(name)
|
function setTheme(name)
|
||||||
{
|
{
|
||||||
root.style.setProperty('--theme-back', themes[name].back);
|
root.style.setProperty('--theme-back', themes[name].back);
|
||||||
|
@ -6,6 +6,7 @@ var ptm;
|
|||||||
var tabloid;
|
var tabloid;
|
||||||
var gamemode;
|
var gamemode;
|
||||||
var root;
|
var root;
|
||||||
|
var themesel
|
||||||
|
|
||||||
function load()
|
function load()
|
||||||
{
|
{
|
||||||
@ -61,6 +62,8 @@ function load()
|
|||||||
|
|
||||||
gamemode = 1;
|
gamemode = 1;
|
||||||
|
|
||||||
|
themesel = document.getElementById('theme-sel');
|
||||||
|
|
||||||
root = document.documentElement;
|
root = document.documentElement;
|
||||||
|
|
||||||
info['go'].innerHTML = "X's Go";
|
info['go'].innerHTML = "X's Go";
|
||||||
@ -70,5 +73,7 @@ function load()
|
|||||||
|
|
||||||
function setup()
|
function setup()
|
||||||
{
|
{
|
||||||
|
setupTheme();
|
||||||
|
|
||||||
setTheme('orange');
|
setTheme('orange');
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user