Skip to content

Commit 23277ec

Browse files
committed
feat: remove Portugal-specific features from country defaults and visual elements
1 parent ef02aff commit 23277ec

2 files changed

Lines changed: 0 additions & 11 deletions

File tree

src/components/LicensePlate.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,6 @@ function getCountryFeatures(country: string): {
8181
rightBandColor: '#003399',
8282
rightBandTextColor: '#FFFFFF',
8383
};
84-
case 'P': // Portugal - has right yellow band
85-
return {
86-
...defaultFeatures,
87-
hasRightBand: true,
88-
rightBandColor: '#FFD700',
89-
rightBandTextColor: '#000000',
90-
};
9184
default:
9285
return defaultFeatures;
9386
}

src/components/PlateGenerator.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ function getCountryDefaults(country: Country): { fontColor: string; backgroundCo
6565
case 'B': // Belgium - white with red text
6666
return { fontColor: '#C8102E', backgroundColor: '#FFFFFF', rightBandText: '' };
6767

68-
// Blue text plates
69-
case 'P': // Portugal - white with blue text + right band
70-
return { fontColor: '#003399', backgroundColor: '#FFFFFF', rightBandText: '' };
71-
7268
// Countries with right band
7369
case 'F': // France - right band with region code
7470
return { fontColor: '#000000', backgroundColor: '#FFFFFF', rightBandText: '75' };

0 commit comments

Comments
 (0)