You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DarkTheme.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2022 Joas Schilling <coding@schilljs.com>
  5. *
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author John Molakvoæ <skjnldsv@protonmail.com>
  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. use OCA\Theming\ITheme;
  27. class DarkTheme extends DefaultTheme implements ITheme {
  28. public function getId(): string {
  29. return 'dark';
  30. }
  31. public function getMediaQuery(): string {
  32. return '(prefers-color-scheme: dark)';
  33. }
  34. public function getTitle(): string {
  35. return $this->l->t('Dark theme');
  36. }
  37. public function getEnableLabel(): string {
  38. return $this->l->t('Enable dark theme');
  39. }
  40. public function getDescription(): string {
  41. return $this->l->t('A dark theme to ease your eyes by reducing the overall luminosity and brightness.');
  42. }
  43. public function getCSSVariables(): array {
  44. $defaultVariables = parent::getCSSVariables();
  45. $colorMainText = '#D8D8D8';
  46. $colorMainBackground = '#171717';
  47. $colorMainBackgroundRGB = join(',', $this->util->hexToRGB($colorMainBackground));
  48. $colorTextMaxcontrast = $this->util->darken($colorMainText, 30);
  49. $colorBoxShadow = $this->util->darken($colorMainBackground, 70);
  50. $colorBoxShadowRGB = join(',', $this->util->hexToRGB($colorBoxShadow));
  51. return array_merge(
  52. $defaultVariables,
  53. $this->generatePrimaryVariables($colorMainBackground, $colorMainText),
  54. [
  55. '--color-main-text' => $colorMainText,
  56. '--color-main-background' => $colorMainBackground,
  57. '--color-main-background-rgb' => $colorMainBackgroundRGB,
  58. '--color-scrollbar' => $this->util->lighten($colorMainBackground, 15),
  59. '--color-background-hover' => $this->util->lighten($colorMainBackground, 4),
  60. '--color-background-dark' => $this->util->lighten($colorMainBackground, 7),
  61. '--color-background-darker' => $this->util->lighten($colorMainBackground, 14),
  62. '--color-placeholder-light' => $this->util->lighten($colorMainBackground, 10),
  63. '--color-placeholder-dark' => $this->util->lighten($colorMainBackground, 20),
  64. '--color-text-maxcontrast' => $colorTextMaxcontrast,
  65. '--color-text-maxcontrast-default' => $colorTextMaxcontrast,
  66. '--color-text-maxcontrast-background-blur' => $this->util->lighten($colorTextMaxcontrast, 2),
  67. '--color-text-light' => $this->util->darken($colorMainText, 10),
  68. '--color-text-lighter' => $this->util->darken($colorMainText, 20),
  69. // used for the icon loading animation
  70. '--color-loading-light' => '#777',
  71. '--color-loading-dark' => '#CCC',
  72. '--color-box-shadow' => $colorBoxShadow,
  73. '--color-box-shadow-rgb' => $colorBoxShadowRGB,
  74. '--color-border' => $this->util->lighten($colorMainBackground, 30),
  75. '--color-border-dark' => $this->util->lighten($colorMainBackground, 38),
  76. '--background-invert-if-dark' => 'invert(100%)',
  77. '--background-invert-if-bright' => 'no',
  78. ]
  79. );
  80. }
  81. }