-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
53 lines (52 loc) · 1.03 KB
/
Copy pathconfig.js
File metadata and controls
53 lines (52 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
export const gameConfig = {
title: "Save the tasty dishes",
description:
"Guess the word within {totalGuesses} attempts to keep the tasty malaysian dishes safe, guess them wrong and you are left with only {lastGuessName}",
}
export const options = [
{
name: "Rendang",
backgroundColor: "#E2680F",
color: "#F9F4DA",
},
{
name: "Curry Laksa",
backgroundColor: "#328AF1",
color: "#F9F4DA",
},
{
name: "Chicken Satay",
backgroundColor: "#F4EB13",
color: "#1E1E1E",
},
{
name: "Roti Canai",
backgroundColor: "#2ED3E9",
color: "#1E1E1E",
},
{
name: "Char Kway Teow",
backgroundColor: "#298EC6",
color: "#F9F4DA",
},
{
name: "Mee Goreng",
backgroundColor: "#599137",
color: "#F9F4DA",
},
{
name: "Ayam Masak Merah",
backgroundColor: "#FFD742",
color: "#1E1E1E",
},
{
name: "Nasi Kandar",
backgroundColor: "#D02B2B",
color: "#F9F4DA",
},
{
name: "Nasi 🍚",
backgroundColor: "#2D519F",
color: "#F9F4DA",
},
]