Frontend Hint
The frontend hint will show the current environment information and the website title as clickable note in the upper right corner.

Frontend hint
You can adjust the color of the hint in your ext_
:
ext_localconf.php
use KonradMichalik\Typo3EnvironmentIndicator\Configuration\Handler;
use KonradMichalik\Typo3EnvironmentIndicator\Configuration\Indicator;
use KonradMichalik\Typo3EnvironmentIndicator\Configuration\Trigger;
Configuration\Handler::addIndicator(
triggers: [
new Trigger\ApplicationContext('Testing')
],
indicators: [
new Indicator\Frontend\Hint([
'color' => '#bd593a',
])
]
);
Copied!
Additional optional configuration keys:
text
(string): The text of the hint. Default is the website title.position
(string): The position of the frontend hint. Default istop left
. Possible values arebottom left
,bottom right
,top left
,top right
.