style: Replace generic icons with TimeTurner themed images

This commit is contained in:
Chris Frankland-Wright 2025-08-07 23:22:04 +01:00 committed by Chris Frankland-Wright (aider)
parent 8150241db2
commit cd922d5403

View file

@ -1,25 +1,25 @@
// In this file, you can define the paths to your local icon image files. // In this file, you can define the paths to your local icon image files.
const iconMap = { const iconMap = {
ltcStatus: { ltcStatus: {
'LOCK': 'assets/lock.svg', 'LOCK': 'assets/timeturner_ltc_green.png',
'FREE': 'assets/lock-open.svg', 'FREE': 'assets/timeturner_ltc_orange.png',
'default': 'assets/question-circle.svg' 'default': 'assets/timeturner_ltc_red.png'
}, },
ntpActive: { ntpActive: {
true: 'assets/check-circle.svg', true: 'assets/timeturner_ntp_green.png',
false: 'assets/times-circle.svg' false: 'assets/timeturner_ntp_red.png'
}, },
syncStatus: { syncStatus: {
'IN SYNC': 'assets/arrows-rotate.svg', 'IN SYNC': 'assets/timeturner_sync_green.png',
'CLOCK AHEAD': 'assets/forward.svg', 'CLOCK AHEAD': 'assets/timeturner_sync_orange.png',
'CLOCK BEHIND': 'assets/backward.svg', 'CLOCK BEHIND': 'assets/timeturner_sync_orange.png',
'TIMETURNING': 'assets/wand-magic-sparkles.svg', 'TIMETURNING': 'assets/timeturner_timeturning.png',
'default': 'assets/question-circle.svg' 'default': 'assets/timeturner_sync_red.png'
}, },
jitterStatus: { jitterStatus: {
'GOOD': 'assets/thumbs-up.svg', 'GOOD': 'assets/timeturner_jitter_green.png',
'AVERAGE': 'assets/face-meh.svg', 'AVERAGE': 'assets/timeturner_jitter_orange.png',
'BAD': 'assets/thumbs-down.svg', 'BAD': 'assets/timeturner_jitter_red.png',
'default': 'assets/question-circle.svg' 'default': 'assets/timeturner_jitter_red.png'
} }
}; };