Skip to content

Commit

Permalink
Adjusted colors to stay within the current color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzluedtke committed Nov 8, 2023
1 parent f3e8036 commit af6d8f0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/Players/CardPicker/CardConfigs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ export const tShirtCards: CardConfig[] = [

export const tShirtAndNumbersCards: CardConfig[] = [
{ value: 10, displayValue: 'S', color: '#9EC8FE' },
{ value: 20, displayValue: 'M', color: '#A3DFF2' },
{ value: 20, displayValue: 'M', color: '#9EC8FE' },
{ value: 30, displayValue: 'L', color: '#A3DFF2' },
{ value: 40, displayValue: 'XL', color: '#9DD49A' },
{ value: 50, displayValue: '1', color: '#F4DD94' },
{ value: 60, displayValue: '2', color: '#F4DD94' },
{ value: 70, displayValue: '3', color: '#F39893' },
{ value: 80, displayValue: '4', color: '#F39893' },
{ value: 90, displayValue: '5', color: '#e76a65' },
{ value: 40, displayValue: 'XL', color: '#A3DFF2' },
{ value: 50, displayValue: '1', color: '#9DD49A' },
{ value: 60, displayValue: '2', color: '#9DD49A' },
{ value: 70, displayValue: '3', color: '#F4DD94' },
{ value: 80, displayValue: '4', color: '#F4DD94' },
{ value: 90, displayValue: '5', color: '#F39893' },
];

export const getCards = (gameType: GameType | undefined): CardConfig[] => {
Expand Down

0 comments on commit af6d8f0

Please sign in to comment.