1
0

DarkHighContrastTheme.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 DarkHighContrastTheme extends DarkTheme implements ITheme {
  28. public function getId(): string {
  29. return 'dark-highcontrast';
  30. }
  31. public function getTitle(): string {
  32. return $this->l->t('Dark theme with high contrast mode');
  33. }
  34. public function getEnableLabel(): string {
  35. return $this->l->t('Enable dark high contrast mode');
  36. }
  37. public function getDescription(): string {
  38. return $this->l->t('Similar to the high contrast mode, but with dark colours.');
  39. }
  40. public function getMediaQuery(): string {
  41. return '(prefers-color-scheme: dark) and (prefers-contrast: more)';
  42. }
  43. /**
  44. * Keep this consistent with other HighContrast Themes
  45. */
  46. public function getCSSVariables(): array {
  47. $defaultVariables = parent::getCSSVariables();
  48. $colorMainText = '#ffffff';
  49. $colorMainBackground = '#000000';
  50. $colorMainBackgroundRGB = join(',', $this->util->hexToRGB($colorMainBackground));
  51. $colorError = '#ff5252';
  52. $colorWarning = '#ffcc00';
  53. $colorSuccess = '#42a942';
  54. $colorInfo = '#38c0ff';
  55. return array_merge(
  56. $defaultVariables,
  57. $this->generatePrimaryVariables($colorMainBackground, $colorMainText, true),
  58. [
  59. '--color-main-background' => $colorMainBackground,
  60. '--color-main-background-rgb' => $colorMainBackgroundRGB,
  61. '--color-main-background-translucent' => 'rgba(var(--color-main-background-rgb), 1)',
  62. '--color-main-text' => $colorMainText,
  63. '--color-background-dark' => $this->util->lighten($colorMainBackground, 25),
  64. '--color-background-darker' => $this->util->lighten($colorMainBackground, 25),
  65. '--color-main-background-blur' => $colorMainBackground,
  66. '--filter-background-blur' => 'none',
  67. '--color-placeholder-light' => $this->util->lighten($colorMainBackground, 30),
  68. '--color-placeholder-dark' => $this->util->lighten($colorMainBackground, 45),
  69. '--color-text-maxcontrast' => $colorMainText,
  70. '--color-text-maxcontrast-background-blur' => $colorMainText,
  71. '--color-text-light' => $colorMainText,
  72. '--color-text-lighter' => $colorMainText,
  73. '--color-error' => $colorError,
  74. '--color-error-rgb' => join(',', $this->util->hexToRGB($colorError)),
  75. '--color-error-hover' => $this->util->lighten($colorError, 10),
  76. '--color-error-text' => $this->util->lighten($colorError, 25),
  77. '--color-warning' => $colorWarning,
  78. '--color-warning-rgb' => join(',', $this->util->hexToRGB($colorWarning)),
  79. '--color-warning-hover' => $this->util->lighten($colorWarning, 10),
  80. '--color-warning-text' => $this->util->lighten($colorWarning, 10),
  81. '--color-success' => $colorSuccess,
  82. '--color-success-rgb' => join(',', $this->util->hexToRGB($colorSuccess)),
  83. '--color-success-hover' => $this->util->lighten($colorSuccess, 10),
  84. '--color-success-text' => $this->util->lighten($colorSuccess, 35),
  85. '--color-info' => $colorInfo,
  86. '--color-info-rgb' => join(',', $this->util->hexToRGB($colorInfo)),
  87. '--color-info-hover' => $this->util->lighten($colorInfo, 10),
  88. '--color-info-text' => $this->util->lighten($colorInfo, 20),
  89. '--color-scrollbar' => $this->util->lighten($colorMainBackground, 35),
  90. // used for the icon loading animation
  91. '--color-loading-light' => '#000000',
  92. '--color-loading-dark' => '#dddddd',
  93. '--color-box-shadow-rgb' => $colorMainText,
  94. '--color-box-shadow' => $colorMainText,
  95. '--color-border' => $this->util->lighten($colorMainBackground, 50),
  96. '--color-border-dark' => $this->util->lighten($colorMainBackground, 50),
  97. '--color-border-maxcontrast' => $this->util->lighten($colorMainBackground, 55),
  98. ]
  99. );
  100. }
  101. public function getCustomCss(): string {
  102. return "
  103. [class^='icon-'], [class*=' icon-'],
  104. .action,
  105. #appmenu li a,
  106. .menutoggle {
  107. opacity: 1 !important;
  108. }
  109. #app-navigation {
  110. border-right: 1px solid var(--color-border);
  111. }
  112. div.crumb {
  113. filter: brightness(150%);
  114. }
  115. ";
  116. }
  117. }