Skip to content

Commit b08bdba

Browse files
committed
Android: HelpActivity: add support for dark mode
1 parent 26dbb8c commit b08bdba

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

android/app/src/main/assets/help.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
<!DOCTYPE html>
22
<html>
3+
<head>
4+
<style>
5+
/* Automatically switches when user has dark mode enabled */
6+
@media (prefers-color-scheme: dark) {
7+
body {
8+
background-color: #121212;
9+
color: #e0e0e0;
10+
}
11+
}
12+
</style>
13+
</head>
314
<body>
415

516
<h1>Using MultiVNC</h1>

0 commit comments

Comments
 (0)