Browse Source

shipbuilding: QCR → RCT, accessible colors

raylu 1 week ago
parent
commit
47122ff3fe
1 changed files with 2 additions and 3 deletions
  1. 2 3
      ts/shipbuilding.ts

+ 2 - 3
ts/shipbuilding.ts

@@ -16,7 +16,7 @@ const blueprint = {
 	'FSE': 1,
 	'LFE': 2,
 	'MFE': 2,
-	'QCR': 1,
+	'RCT': 1,
 	'SFE': 1,
 	'LCB': 1,
 	'MFL': 1,
@@ -30,7 +30,6 @@ const blueprint = {
 const shipbuilders = [
 	'CraftsmanThirteen',
 	'EvoV',
-	'neke86',
 	'SurvivorBob',
 	'TRUEnterprises',
 ];
@@ -250,7 +249,7 @@ function renderProduction(expertiseGroups: Record<string, string[]>, production:
 				const span = element('span', {
 					textContent: `${formatAmount(amount)}x${mat}`,
 				});
-				span.style.color = traded > amount * 2 ? '#6c6' : '#c66';
+				span.style.color = traded > amount * 2 ? '#0cc' : '#c70';
 				buildingMats.append(span);
 				if (index < mats.length - 1)
 					buildingMats.append(document.createTextNode(' '));