-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathallocationMethods.ts
More file actions
36 lines (35 loc) · 1 KB
/
allocationMethods.ts
File metadata and controls
36 lines (35 loc) · 1 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
// Top colors from https://venngage.com/tools/accessible-color-palette-generator
export const allocationMethods = {
PC: {
label: 'Per capita',
summary: 'Equality. Based on current population levels.',
color: '#8b10c8'
},
PCC: {
label: 'Per capita convergence',
summary: 'Continuity and equality. Converging from grandfathering to per capita in 2050.',
color: '#d01581'
},
AP: {
label: 'Ability to pay',
summary: 'Capability. Based on GDP per capita',
color: '#00afaf'
},
GDR: {
label: 'GH development rights',
summary:
'Capability + Responsibility. Based on GDP per capita and a responsibility-capability index.',
color: '#dc9a00'
},
ECPC: {
label: 'Equal cumulative per capita',
summary:
'Responsibility + Equality. Pays off historical debt and surplus in the short run and converges to per capita in 2050.',
color: '#ae6600'
},
GF: {
label: 'Grandfathering',
summary: 'Continuity. Based on current emission levels. Not considered fair.',
color: '#919191'
}
} as const;