<style>
.hintergrundfarbe {
background-color: #003963;
}
.schriftfarbe {
color: white;
}
.schriftfarbeMitglied {
color: white;
}
</style>
{% if is_granted('ROLE_FIRMA') %}
{% if app.user.firmenprofil.bildStartseite == 'ja' %}
<style>
.hintergrundfarbe {
background-color: {{ app.user.firmenprofil.primarfarbe }};
}
.schriftfarbe {
color: {{ app.user.firmenprofil.schriftfarbe }};
}
.andereButtonfarbe {
background-color: {{ app.user.firmenprofil.buttonfarbe }};
}
.schriftfarbeMitglied {
color: {{ app.user.firmenprofil.buttonfarbe }};
}
</style>
{% endif %}
{% endif %}