templates/user/firma/_firmenfarben.html.twig line 1

Open in your IDE?
  1.     <style>
  2.         .hintergrundfarbe {
  3.             background-color: #003963;
  4.         }
  5.         .schriftfarbe {
  6.             color: white;
  7.         }
  8.         .schriftfarbeMitglied {
  9.             color: white;
  10.         }
  11.     </style>
  12.     {% if is_granted('ROLE_FIRMA') %}
  13.         {% if app.user.firmenprofil.bildStartseite == 'ja' %}
  14.             <style>
  15.                 .hintergrundfarbe {
  16.                     background-color: {{ app.user.firmenprofil.primarfarbe }};
  17.                 }
  18.                 .schriftfarbe {
  19.                     color: {{ app.user.firmenprofil.schriftfarbe }};
  20.                 }
  21.                 .andereButtonfarbe {
  22.                     background-color: {{ app.user.firmenprofil.buttonfarbe }};
  23.                 }
  24.                 .schriftfarbeMitglied {
  25.                     color: {{ app.user.firmenprofil.buttonfarbe }};
  26.                 }
  27.             </style>
  28.         {% endif %}
  29.     {% endif %}