From f2975db70f086052ef1218202d3b1ffae91e1377 Mon Sep 17 00:00:00 2001 From: Jeffrey Sun Date: Mon, 12 Jun 2017 18:25:34 -0700 Subject: [PATCH] var -> const --- js/constants/colors.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/constants/colors.js b/js/constants/colors.js index 41eda43..53b6da1 100644 --- a/js/constants/colors.js +++ b/js/constants/colors.js @@ -1,8 +1,8 @@ -var head = { +const head = { brick: [0, 62, 53], yellow: [48, 100, 64] } -var bg = { +const bg = { forest: '#006375', green: '#63D6A3', blue: '#358EFF',