This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-46/docs/assets/js/constants.js
2020-04-17 17:17:39 -04:00

23 lines
633 B
JavaScript

var constants = {
testOrganizer: {
EXAMPLE_DELETE_ME_LATER : 1277336
},
ui: {
// These are the variables that control injection/cssinjector.js
// To add a new theme var, you must also add it to the injector
theme: {
// Theme variables specific to the webpage container
webpage: {
bg_color: "#242424",
text_color: "#ffffff",
canvas_border: "rgb(63, 63, 63)"
},
// Theme variables specific to the game
game: {
}
}
}
};