add color updates to timer for feedback

This commit is contained in:
2025-07-13 16:04:46 -04:00
parent ae874cd665
commit b0024aec80
2 changed files with 57 additions and 2 deletions

View File

@@ -15,6 +15,24 @@ body {
margin: 0;
}
/* Roast phase backgrounds */
#timer.initial-phase {
background-color: #ffffff; /* white before Charge */
}
#timer.charge-phase {
background-color: #e6ffe6; /* pale green after Charge */
}
#timer.yellow-phase {
background-color: #fffdd0; /* light yellow after Yellow */
}
/* Dynamic muddy yellow-brown transition (040% dev) */
#timer.dev-phase {
transition: background-color 0.5s ease;
}
#create-plan {
padding: 20px;
text-align: center;