Fix table header centre
Tweak cold temprature colours
This commit is contained in:
fraxle
2026-05-25 07:23:31 +01:00
parent 984502c854
commit e9a6cc9912
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -439,11 +439,11 @@
color: #6b4f2a;
font-family: Manrope, sans-serif;
font-size: 12px;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.07em;
font-weight: 700;
padding: 14px 12px;
text-align: right;
white-space: nowrap;
}
+7 -7
View File
@@ -34,13 +34,13 @@
// utciCategory() reads from this array - do not duplicate elsewhere.
// -------------------------------------------------------------------
export const UTCI_BANDS = [
{ max: -20, label: 'Extreme cold', bg: '#5e668a', fg: '#ffffff' },
{ max: -10, label: 'Arctic', bg: '#708bca', fg: '#ffffff' },
{ max: 0, label: 'Freezing', bg: '#92b5dd', fg: '#1a1200' },
{ max: 5, label: 'Very cold', bg: '#b5d2e5', fg: '#1a1200' },
{ max: 10, label: 'Cold', bg: '#cfe2e8', fg: '#1a1200' },
{ max: 15, label: 'Chilly', bg: '#daead5', fg: '#1a1200' },
{ max: 19, label: 'Cool', bg: '#b1dba5', fg: '#1a1200' },
{ max: -20, label: 'Extreme cold', bg: '#9b7fc2', fg: '#ffffff' },
{ max: -10, label: 'Arctic', bg: '#7fa8d8', fg: '#ffffff' },
{ max: 0, label: 'Freezing', bg: '#7ec0e8', fg: '#1a1200' },
{ max: 5, label: 'Very cold', bg: '#a8d4ee', fg: '#1a1200' },
{ max: 10, label: 'Cold', bg: '#b8e0e8', fg: '#1a1200' },
{ max: 15, label: 'Chilly', bg: '#b8e8d8', fg: '#1a1200' },
{ max: 19, label: 'Cool', bg: '#c5e8c0', fg: '#1a1200' },
{ max: 24, label: 'Comfortable', bg: '#90d090', fg: '#157a15', fontWeight: 700 },
{ max: 29, label: 'Warm', bg: '#f8e554', fg: '#1a1200' },
{ max: 34, label: 'Hot', bg: '#f5aa54', fg: '#1a1200' },