-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.js
97 lines (97 loc) · 1.92 KB
/
config.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
module.exports = {
conference: {
id: 'fosdem',
name: 'FOSDEM',
editions: [
{
id: '2025',
name: 'FOSDEM 2025',
dates: ['2025-02-01', '2025-02-02']
},
{
id: '2024',
name: 'FOSDEM 2024',
dates: ['2024-02-03', '2024-02-04']
},
{
id: '2023',
name: 'FOSDEM 2023',
dates: ['2023-02-04', '2023-02-05']
},
{
id: '2022',
name: 'FOSDEM 2022',
dates: ['2022-02-05', '2022-02-06']
},
{
id: '2021',
name: 'FOSDEM 2021',
dates: ['2021-02-06', '2021-02-07']
},
{
id: '2020',
name: 'FOSDEM 2020',
dates: ['2020-02-01', '2020-02-02']
},
{
id: '2019',
name: 'FOSDEM 2019',
dates: ['2019-02-02', '2019-02-03']
},
{
id: '2018',
name: 'FOSDEM 2018',
dates: ['2019-02-03', '2019-02-04']
}
]
},
features: {
map: true,
all: false,
live: true,
rooms: true,
localtimes: true
},
colors: {
primary: {
base: '#54BECA',
lighten3: '#DCEBED'
},
secondary: {
base: '#A12F88',
lighten5: '#FFF0E8'
}
},
types: [
{
background: 'background-1.png',
mobileColor: '#7FDBD399',
desktopColor: '#00E3CF',
arrowColor: '#00E3CF'
},
{
background: 'background-2.png',
mobileColor: '#54BECA99',
desktopColor: '#F7F7F7',
arrowColor: '#54BECA'
},
{
background: 'background-3.png',
mobileColor: '#96C3C999',
desktopColor: '#00D4EF',
arrowColor: '#00D4EF'
},
{
background: 'background-4.png',
mobileColor: '#E0D0BF99',
desktopColor: '#DB8529',
arrowColor: '#DB8529'
},
{
background: 'background-5.png',
mobileColor: '#A18A9D99',
desktopColor: '#D900B4',
arrowColor: '#D900B4'
}
]
}