Skip to content

Commit 544e607

Browse files
committed
style: added high contrast theme
1 parent a56b664 commit 544e607

File tree

13 files changed

+518
-165
lines changed

13 files changed

+518
-165
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This is a log of major user-visible changes in each phpMyFAQ release.
2020
- added possibility to enable/disable admin session counter (Thorsten)
2121
- added EU Data Act 2025 compliance (Thorsten)
2222
- added Urdu translation (Thorsten)
23-
- added dark mode / light mode toggle (Thorsten)
23+
- added dark mode / light mode / high contrast toggle (Thorsten)
2424
- added support for PHP 8.5 (Thorsten)
2525
- added support for .env files (Thorsten)
2626
- added support for OpenSearch (Thorsten)

composer.lock

Lines changed: 34 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpmyfaq/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ DEBUG=false
33
DEBUG_LOG_QUERIES=false
44

55
# Application Configuration
6-
APP_ENV=production
6+
APP_ENV=development
77

88
# ElasticSearch and OpenSearch Configuration
99
OPENSEARCH_BASE_URI=http://127.0.0.1:9201

phpmyfaq/admin/assets/scss/style.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@
5151
@import 'navigation/nav.scss';
5252
@import 'navigation/sidenav';
5353
@import 'navigation/topnav.scss';
54+
55+
// Theme Switcher
56+
@import '../../../assets/scss/layout/theme-switcher';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
html {
2-
border-top: 5px solid red;
2+
border-top: 5px solid var(--bs-danger);
33
}

0 commit comments

Comments
 (0)