Passed
Push — master ( e1cb1b...9a76f0 )
by John
15:33 queued 17s
created

DarkTheme::getMediaQuery()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
declare(strict_types=1);
3
/**
4
 * @copyright Copyright (c) 2022 Joas Schilling <[email protected]>
5
 *
6
 * @author Joas Schilling <[email protected]>
7
 * @author John Molakvoæ <[email protected]>
8
 *
9
 * @license GNU AGPL version 3 or any later version
10
 *
11
 * This program is free software: you can redistribute it and/or modify
12
 * it under the terms of the GNU Affero General Public License as
13
 * published by the Free Software Foundation, either version 3 of the
14
 * License, or (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
 * GNU Affero General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU Affero General Public License
22
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
 *
24
 */
25
namespace OCA\Theming\Themes;
26
27
use OCA\Theming\ITheme;
28
29
class DarkTheme extends DefaultTheme implements ITheme {
30
31
	public function getId(): string {
32
		return 'dark';
33
	}
34
35
	public function getMediaQuery(): string {
36
		return '(prefers-color-scheme: dark)';
37
	}
38
39
	public function getTitle(): string {
40
		return $this->l->t('Dark theme');
41
	}
42
43
	public function getEnableLabel(): string {
44
		return $this->l->t('Enable dark theme');
45
	}
46
47
	public function getDescription(): string {
48
		return $this->l->t('A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.');
49
	}
50
51
	public function getCSSVariables(): array {
52
		$defaultVariables = parent::getCSSVariables();
53
54
		$colorMainText = '#D8D8D8';
55
		$colorMainBackground = '#171717';
56
		$colorMainBackgroundRGB = join(',', $this->util->hexToRGB($colorMainBackground));
57
		$colorBoxShadow = $this->util->darken($colorMainBackground, 70);
58
		$colorBoxShadowRGB = join(',', $this->util->hexToRGB($colorBoxShadow));
59
60
		return array_merge($defaultVariables, [	
61
			'--color-main-text' => $colorMainText,
62
			'--color-main-background' => $colorMainBackground,
63
			'--color-main-background-rgb' => $colorMainBackgroundRGB,
64
65
			'--color-background-hover' => $this->util->lighten($colorMainBackground, 4),
66
			'--color-background-dark' => $this->util->lighten($colorMainBackground, 7),
67
			'--color-background-darker' => $this->util->lighten($colorMainBackground, 14),
68
69
			'--color-placeholder-light' => $this->util->lighten($colorMainBackground, 10),
70
			'--color-placeholder-dark' => $this->util->lighten($colorMainBackground, 20),
71
72
			'--color-text-maxcontrast' => $this->util->darken($colorMainText, 30),
73
			'--color-text-light' => $this->util->darken($colorMainText, 10),
74
			'--color-text-lighter' => $this->util->darken($colorMainText, 20),
75
76
			'--color-loading-light' => '#777',
77
			'--color-loading-dark' => '#CCC',
78
79
			'--color-box-shadow-rgb' => $colorBoxShadowRGB,
80
81
			'--color-border' => $this->util->lighten($colorMainBackground, 7),
82
			'--color-border-dark' => $this->util->lighten($colorMainBackground, 14),
83
84
			'--background-invert-if-dark' => 'invert(100%)',
85
		]);
86
	}
87
}
88