Yes, you would have to remove the night styling. So you would have to change from this:
style: |
ha-card {
box-shadow:
{% if is_state('sun.sun', 'above_horizon') %}
-8px -8px 8px 0 rgba(255,255,255,.5),8px 8px 8px 0 rgba(0,0,0,.03);
{% else %}
-8px -8px 8px 0 rgba(77, 77, 77,.5),8px 8px 8px 0 rgba(0,0,0,.3);
{% endif %}
}
To this:
style: |
ha-card {
box-shadow: -8px -8px 8px 0 rgba(255,255,255,.5),8px 8px 8px 0 rgba(0,0,0,.03);
}
For pressed buttons, from this:
style: |
ha-card {
box-shadow:
{% if is_state('sun.sun', 'above_horizon') and is_state('switch.dining_table', 'on') %}
inset -4px -4px 8px 0 rgba(255,255,255,.7), inset 4px 4px 8px 0 rgba(0,0,0,.07);
{% elif is_state('sun.sun', 'above_horizon') and is_state('switch.dining_table', 'off') %}
-8px -8px 8px 0 rgba(255,255,255,.5),8px 8px 8px 0 rgba(0,0,0,.03);
{% elif is_state('sun.sun', 'below_horizon') and is_state('switch.dining_table', 'on') %}
inset -4px -4px 12px 0 rgba(77, 77, 77,.5), inset 4px 4px 12px 0 rgba(0,0,0,.7);
{% elif is_state('sun.sun', 'below_horizon') and is_state('switch.dining_table', 'off') %}
-8px -8px 8px 0 rgba(77, 77, 77,.5),8px 8px 8px 0 rgba(0,0,0,.3);
{% endif %}
}
To this:
style: |
ha-card {
box-shadow:
{% if is_state('switch.dining_table', 'on') %}
inset -4px -4px 8px 0 rgba(255,255,255,.7), inset 4px 4px 8px 0 rgba(0,0,0,.07);
{% else %}
-8px -8px 8px 0 rgba(255,255,255,.5),8px 8px 8px 0 rgba(0,0,0,.03);
{% endif %}
}
For the scenes template, adding another {% elif…%} should work fine, something like this:
#{% if is_state('input_boolean.gamemodus', 'on')%} Game Scène staat
aan, succes met gamen! {% elif is_state('input_boolean.moviemode',
'on')%} Film Scène staat aan, geniet van de film! {% elif
is_state('input_boolean.gamemodus', 'off')%} Kies een scène en
ontspan. {% elif is_state('input_boolean.another_variable', 'on')%} Some
other text {% endif %}