-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguages.js
47 lines (47 loc) · 922 Bytes
/
languages.js
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
export const languages = [
{
name: "HTML",
backgroundColor: "#E2680F",
color: "#F9F4DA",
},
{
name: "CSS",
backgroundColor: "#328AF1",
color: "#F9F4DA",
},
{
name: "JavaScript",
backgroundColor: "#F4EB13",
color: "#1E1E1E",
},
{
name: "React",
backgroundColor: "#2ED3E9",
color: "#1E1E1E",
},
{
name: "TypeScript",
backgroundColor: "#298EC6",
color: "#F9F4DA",
},
{
name: "Node.js",
backgroundColor: "#599137",
color: "#F9F4DA",
},
{
name: "Python",
backgroundColor: "#FFD742",
color: "#1E1E1E",
},
{
name: "Ruby",
backgroundColor: "#D02B2B",
color: "#F9F4DA",
},
{
name: "Assembly",
backgroundColor: "#2D519F",
color: "#F9F4DA",
},
]