-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththemes.js
41 lines (41 loc) · 947 Bytes
/
themes.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
export const themes = [
{
"name": "Theme 1",
"key": 0,
"colors": {
"bg": "#36413E",
"head": "#D7D6D6",
"border": "#8D8D92",
"para": "#BEB2C8",
"av-border": "#8D8D92"
},
"has-av-border": true,
"font": "Inter"
},
{
"name": "Theme 2",
"key": 1,
"colors": {
"bg": "#2F4858",
"head": "#F6AE2D",
"border": "#33658A",
"para": "#86BBD8",
"av-border": "#33658A"
},
"has-av-border": false,
"font": "League Spartan"
},
{
"name": "Theme 3",
"key": 2,
"colors": {
"bg": "#49306B",
"head": "#E1CDB5",
"border": "#635380",
"para": "#ACE4AA",
"av-border": "#635380"
},
"has-av-border": true,
"font": "Work Sans"
}
]