Skip to content

Commit

Permalink
fix(EventsTimelineLegend): Fix colors of orgs
Browse files Browse the repository at this point in the history
  • Loading branch information
vogelino committed Sep 2, 2024
1 parent 5b0b56e commit 92127ca
Showing 1 changed file with 12 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,43 +20,43 @@ const placeholderOrganisations: LegendOrganisation[] = [
{
slug: 'fridays-for-future' as EventOrganizerSlugType,
name: 'Fridays for Future',
color: 'var(--categorical-color-1)',
color: 'var(--categorical-color-6)',
isMain: true,
},
{
slug: 'last-generation' as EventOrganizerSlugType,
name: 'Last Generation',
color: 'var(--categorical-color-2)',
color: 'var(--categorical-color-5)',
isMain: true,
},
{
slug: 'extinction-rebellion' as EventOrganizerSlugType,
name: 'Extinction Rebellion',
color: 'var(--categorical-color-3)',
color: 'var(--categorical-color-7)',
isMain: true,
},
{
slug: 'bund' as EventOrganizerSlugType,
name: 'BUND',
color: 'var(--categorical-color-4)',
color: 'var(--categorical-color-14)',
isMain: true,
},
{
slug: 'greenpeace' as EventOrganizerSlugType,
name: 'Greenpeace',
color: 'var(--categorical-color-5)',
slug: 'nabu' as EventOrganizerSlugType,
name: 'NABU',
color: 'var(--categorical-color-2)',
isMain: true,
},
{
slug: 'verdi-united-services-union' as EventOrganizerSlugType,
name: 'Ver.di: United Services Union',
color: 'var(--categorical-color-6)',
slug: 'greenpeace' as EventOrganizerSlugType,
name: 'Greenpeace',
color: 'var(--categorical-color-3)',
isMain: true,
},
{
slug: 'ende-gelaende' as EventOrganizerSlugType,
name: 'Ende Gelaende',
color: 'var(--categorical-color-7)',
color: 'var(--categorical-color-4)',
isMain: true,
},
{
Expand All @@ -65,28 +65,10 @@ const placeholderOrganisations: LegendOrganisation[] = [
color: 'var(--categorical-color-8)',
isMain: true,
},
{
slug: 'mlpd-marxist-leninist-party-of-germany' as EventOrganizerSlugType,
name: 'MLPD: Marxist-Leninist Party of Germany',
color: 'var(--categorical-color-9)',
isMain: true,
},
{
slug: 'the-left' as EventOrganizerSlugType,
name: 'The Left',
color: 'var(--categorical-color-10)',
isMain: true,
},
{
slug: 'government-of-germany' as EventOrganizerSlugType,
name: 'Government of Germany',
color: 'var(--grayDark)',
isMain: false,
},
{
slug: 'adfc-german-bicycle-club' as EventOrganizerSlugType,
name: 'ADFC: German Bicycle Club',
color: 'var(--categorical-color-11)',
color: 'var(--categorical-color-1)',
isMain: true,
},
{
Expand All @@ -95,12 +77,6 @@ const placeholderOrganisations: LegendOrganisation[] = [
color: 'var(--categorical-color-12)',
isMain: true,
},
{
slug: 'rebell-youth-league-rebel' as EventOrganizerSlugType,
name: 'REBELL: Youth League Rebel',
color: 'var(--categorical-color-14)',
isMain: true,
},
]

function EventsTimelineLegend({
Expand Down

0 comments on commit 92127ca

Please sign in to comment.