-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
33 lines (31 loc) · 1.04 KB
/
data.ts
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
export interface WordColor {
word: string;
color: string;
}
const data: WordColor[] = [
{ word: "pleasant", color: "#FF6402" },
{ word: "happy", color: "#E9A641" },
{ word: "cloudy", color: "#6CACE4" },
{ word: "clean", color: "#ECBAA8" },
{ word: "energetic", color: "#FE5000" },
{ word: "cozy", color: "#5D967A" },
{ word: "fresh", color: "#2E8B57" },
{ word: "gloomy", color: "#5B68A7" },
{ word: "moody", color: "#2E4F58" },
{ word: "calm", color: "#ADD8E6" },
{ word: "thoughtful", color: "#8A2BE2" },
{ word: "overcast", color: "#808080" },
{ word: "gray", color: "#B3BCC6" },
{ word: "faint", color: "#D3D3D3" },
{ word: "stuffy", color: "#A52A2A" },
{ word: "murky", color: "#52768C" },
{ word: "sunless", color: "#DFD1C3" },
{ word: "weak", color: "#F0E68C" },
{ word: "bright", color: "#FFFF00" },
{ word: "dark", color: "#000000" },
{ word: "vivid", color: "#FF0000" },
{ word: "soft", color: "#FFC0CB" },
{ word: "warm", color: "#FF4500" },
{ word: "cool", color: "#00FFFF" },
];
export default data;