Skip to content

Commit 1dfa606

Browse files
committed
colors
1 parent e3753f0 commit 1dfa606

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

css/map.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ body { display: flex; flex-direction: column; height: 100dvh; overflow: hidden;
102102
display: inline-block; padding: 0 5px; border-radius: 3px;
103103
font-size: 10px; font-weight: 600; line-height: 1.6;
104104
}
105-
.cat-badge.hyperscaler { background: #fde8e8; color: #b2182b; }
106-
.cat-badge.swiss { background: #e0edf5; color: #2166ac; }
105+
.cat-badge.hyperscaler { background: #ffe8e6; color: #b33a30; }
106+
.cat-badge.swiss { background: #e0f5e9; color: #2d7a4f; }
107107
.cat-badge.foreign { background: #fef3c7; color: #b45309; }
108108
.cat-badge.unknown { background: #f3f4f6; color: #6b7280; }
109109

index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ <h3>Open source &amp; open data</h3>
8484
document.addEventListener('DOMContentLoaded', function () {
8585
const COLOR_SCHEMES = {
8686
default: {
87-
'us-cloud': { high: '#fa7373', medium: '#ffb3a2', low: '#c7c6c6' },
88-
'swiss-based': { high: '#1cd0aa', medium: '#a8f6cb', low: '#c7c6c6' },
89-
lake: '#7CB8E0',
87+
'us-cloud': { high: '#ffa199', medium: '#ffccb6', low: '#cccccc' },
88+
'swiss-based': { high: '#7dfca4', medium: '#ddfcb5', low: '#cccccc' },
89+
lake: '#89B3D6',
9090
},
9191
colorblind: {
92-
'us-cloud': { high: '#E89030', medium: '#F0C078', low: '#f0ead8' },
93-
'swiss-based': { high: '#2098CC', medium: '#88CCE8', low: '#e6edd8' },
94-
lake: '#B8B0D8',
92+
'us-cloud': { high: '#f1be61', medium: '#fde7c4', low: '#cccccc' },
93+
'swiss-based': { high: '#6fa2d0', medium: '#C0D8E8', low: '#cccccc' },
94+
lake: '#c4afff',
9595
},
9696
};
9797
var CATEGORY_COLORS = COLOR_SCHEMES.default;
@@ -467,7 +467,7 @@ <h3>Open source &amp; open data</h3>
467467
const color = getColor(m);
468468
const cat = effectiveCategory(m);
469469
const level = confidenceLevel(m.classification_confidence || 0);
470-
const textColor = (level === 'high' && cat) ? '#fff' : '#333';
470+
const textColor = '#000';
471471
const label = LABELS[m.provider] || m.provider;
472472

473473
const showBody = isMobile ? 'display:none' : '';

0 commit comments

Comments
 (0)