'color' => $color,
'color-text' => $this->theming->getTextColorPrimary(),
'color-element' => $this->util->elementColor($color),
+ 'color-element-bright' => $this->util->elementColor($color),
+ 'color-element-dark' => $this->util->elementColor($color, false),
'logo' => $this->url->getAbsoluteURL($this->theming->getLogo()),
'background' => $backgroundLogo === 'backgroundColor' || ($backgroundLogo === false && $this->theming->getColorPrimary() !== '#0082c9') ?
$this->theming->getColorPrimary() :
/**
* get color for on-page elements:
* theme color by default, grey if theme color is to bright
- * @param $color
+ * @param string $color
+ * @param bool $brightBackground
* @return string
*/
- public function elementColor($color) {
- $l = $this->calculateLuminance($color);
- if ($l>0.8) {
+ public function elementColor($color, bool $brightBackground = true) {
+ $luminance = $this->calculateLuminance($color);
+
+ if ($brightBackground && $luminance > 0.8) {
+ // If the color is too bright in bright mode, we fall back to a darker gray
return '#aaaaaa';
}
+
+ if (!$brightBackground && $luminance < 0.2) {
+ // If the color is too dark in dark mode, we fall back to a brighter gray
+ return '#555555';
+ }
+
return $color;
}
'color' => '#FFFFFF',
'color-text' => '#000000',
'color-element' => '#aaaaaa',
+ 'color-element-bright' => '#aaaaaa',
+ 'color-element-dark' => '#FFFFFF',
'logo' => 'http://absolute/logo',
'background' => 'http://absolute/background',
'background-plain' => false,
'color' => '#01e4a0',
'color-text' => '#ffffff',
'color-element' => '#01e4a0',
+ 'color-element-bright' => '#01e4a0',
+ 'color-element-dark' => '#01e4a0',
'logo' => 'http://localhost/logo5',
'background' => 'http://localhost/background6',
'background-plain' => false,
'color' => '#000000',
'color-text' => '#ffffff',
'color-element' => '#000000',
+ 'color-element-bright' => '#000000',
+ 'color-element-dark' => '#555555',
'logo' => 'http://localhost/logo5',
'background' => '#000000',
'background-plain' => true,
'color' => '#000000',
'color-text' => '#ffffff',
'color-element' => '#000000',
+ 'color-element-bright' => '#000000',
+ 'color-element-dark' => '#555555',
'logo' => 'http://localhost/logo5',
'background' => '#000000',
'background-plain' => true,
->willReturn($textColor);
$util = new Util($this->config, $this->createMock(IAppManager::class), $this->createMock(IAppData::class));
- $this->util->expects($this->once())
+ $this->util->expects($this->exactly(3))
->method('elementColor')
->with($color)
- ->willReturn($util->elementColor($color));
+ ->willReturnCallback(static function(string $color, bool $brightBackground = true) use ($util) {
+ return $util->elementColor($color, $brightBackground);
+ });
$this->util->expects($this->once())
->method('isBackgroundThemed')