html`<style>
li, p{
width: ${characters_per_length}ch;
max-width: ${characters_per_length}ch;
}
input {
accent-color: ${
characters_per_length < 35 || characters_per_length > 75
? "red"
: characters_per_length < 50 || characters_per_length > 60
? ""
: "green"
}
}
.textDimensionCalculation {
position: absolute;
visibility: hidden;
height: auto;
width: auto;
white-space: nowrap;
}
</style>`