Skip to content

Commit 3ba19d8

Browse files
-
1 parent f005bca commit 3ba19d8

15 files changed

+15
-12
lines changed

.env.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ SENDER_ADDRESS=
3636
#THEME_COLOR_1='light'
3737
#THEME_COLOR_2='dark'
3838
#THEME_COLOR_3='primary'
39+
#THEME_COLOR_4='light'
3940
###< app ###

config/packages/twig.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ twig:
55
themeColor1: '%env(THEME_COLOR_1)%'
66
themeColor2: '%env(THEME_COLOR_2)%'
77
themeColor3: '%env(THEME_COLOR_3)%'
8+
themeColor4: '%env(THEME_COLOR_4)%'

config/services.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ parameters:
77
env(THEME_COLOR_1): 'dark'
88
env(THEME_COLOR_2): 'light'
99
env(THEME_COLOR_3): 'info'
10+
env(THEME_COLOR_4): 'secondary'
1011

1112
services:
1213
# default configuration for services in *this* file

templates/Modules/app_role/app_role_create.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{% endblock %}
1313

1414
{% block main_content %}
15-
<div class="jumbotron bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
15+
<div class="jumbotron bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
1616
<p class="lead">{{ 'app_users_note'|trans|raw }}</p>
1717
</div>
1818

templates/Modules/app_role/app_role_index.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{% endblock %}
1313

1414
{% block main_content %}
15-
<div class="jumbotron bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
15+
<div class="jumbotron bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
1616
<p class="lead">{{ 'app_users_note'|trans|raw }}</p>
1717
</div>
1818

templates/Modules/app_user/app_user_create.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{% endblock %}
1313

1414
{% block main_content %}
15-
<div class="jumbotron bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
15+
<div class="jumbotron bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
1616
<p class="lead">{{ 'app_users_note'|trans|raw }}</p>
1717
</div>
1818

templates/Modules/app_user/app_user_index.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{% endblock %}
1313

1414
{% block main_content %}
15-
<div class="jumbotron bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
15+
<div class="jumbotron bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
1616
<p class="lead">{{ 'app_users_note'|trans|raw }}</p>
1717
</div>
1818

templates/Modules/exception/exception_401.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block head_title %}{{ 'error401.title'|trans }}{% endblock %}
44

55
{% block main_content %}
6-
<div class="jumbotron mt-3 bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
6+
<div class="jumbotron mt-3 bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
77
<h1 class="display-4">{{ 'error401.title'|trans }}</h1>
88
<p class="lead">{{ 'error401.note'|trans }}</p>
99
</div>

templates/Modules/exception/exception_403.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block head_title %}{{ 'error403.title'|trans }}{% endblock %}
44

55
{% block main_content %}
6-
<div class="jumbotron mt-3 bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
6+
<div class="jumbotron mt-3 bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
77
<h1 class="display-4">{{ 'error403.title'|trans }}</h1>
88
<p class="lead">{{ 'error403.note'|trans }}</p>
99
</div>

templates/Modules/exception/exception_404.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block head_title %}{{ 'error404.title'|trans }}{% endblock %}
44

55
{% block main_content %}
6-
<div class="jumbotron mt-3 bg-secondary text-{{ themeColor2 }} border border-{{ themeColor2 }}">
6+
<div class="jumbotron mt-3 bg-{{ themeColor4 }} text-{{ themeColor2 }} border border-{{ themeColor2 }}">
77
<h1 class="display-4">{{ 'error404.title'|trans }}</h1>
88
<p class="lead">{{ 'error404.note'|trans }}</p>
99
</div>

0 commit comments

Comments
 (0)