Skip to content

Commit

Permalink
Added missing config.js for CC 094
Browse files Browse the repository at this point in the history
  • Loading branch information
vimkat committed Oct 27, 2018
1 parent 04aebd2 commit 68a6772
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Node.JS ###
.DS_Store
config.js
/config.js
node_modules
.env

Expand Down
46 changes: 46 additions & 0 deletions CodingChallenges/CC_094_2048/P5/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
let colorsSizes = {
"2": {
size: 64,
color: "#F35956"
},
"4": {
size: 64,
color: "#F35956"
},
"8": {
size: 64,
color: "#49BB6C"
},
"16": {
size: 64,
color: "#2494C1"
},
"32": {
size: 64,
color: "#9659A7"
},
"64": {
size: 64,
color: "#F1C500"
},
"128": {
size: 36,
color: "#FF5956"
},
"256": {
size: 36,
color: "#F1C5FF"
},
"512": {
size: 36,
color: "#00000"
},
"1024": {
size: 64,
color: "#24FFC1"
},
"2048": {
size: 64,
color: "#A659A9"
},
}

0 comments on commit 68a6772

Please sign in to comment.