diff --git a/source/code/hippie/variables.js b/source/code/hippie/variables.js
index bf6f4bc..7ab6556 100644
--- a/source/code/hippie/variables.js
+++ b/source/code/hippie/variables.js
@@ -1,4 +1,4 @@
-var hippie = {
+let hippie = {
brand: "|-| | |^ |^ | [- ",
screen: {
w: Math.max(document.documentElement.offsetWidth, document.documentElement.clientWidth, window.innerWidth, 0),
@@ -12,9 +12,19 @@ var hippie = {
h: Math.max(document.body.offsetHeight, document.body.clientHeight, 0),
}
};
+let viewHover = true;
+let basicEase = 600;
-var viewHover = true;
-var basicEase = 600;
-
-var onerowAlphabet = "/\\ ]3 ( |) [- /= (_, |-| | _T /< |_ |\\/| |\\| () |^ ()_ /? _\\~ ~|~ |_| \\/ \\/\\/ >< `/ ~/_ ";
-var onerowDigits = "\'| ^/_ -} +| ;~ (o \"/ {} \"| (\\) ";
+const onerowAlphabet = "/\\ ]3 ( |) [- /= (_, |-| | _T /< |_ |\\/| |\\| () |^ ()_ /? _\\~ ~|~ |_| \\/ \\/\\/ >< `/ ~/_ ";
+const onerowDigits = "\'| ^/_ -} +| ;~ (o \"/ {} \"| (\\) ";
+const flagColors = [
+ 'fad803',
+ 'f2af13',
+ 'd30a51',
+ '8e1f68',
+ '273f8b',
+ '3c579a',
+ 'b7e0f0',
+ '6bc7d9',
+ '52bed1'
+]
\ No newline at end of file
diff --git a/source/templates/demo/_app.njk b/source/templates/demo/_app.njk
index 0939550..ca7a37c 100755
--- a/source/templates/demo/_app.njk
+++ b/source/templates/demo/_app.njk
@@ -23,6 +23,8 @@
{% block body %}{% endblock %}
{% block script %}
+
+
{% endblock %}