You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,31 @@ You can see information about devices such as:
32
32
-`Hide/Unhide` sensors to remove some data from UI and web server.
33
33
- Multiple `Tray icons` and `Gadget` for selected sensor values.
34
34
-`Light`/`Dark` themes with auto switching mode.
35
-
- Custom `color-themes` from external files - You can find examples [here](https://github.com/HardwareMonitor/openhardwaremonitor/tree/master/OpenHardwareMonitor/Resources/themes)
35
+
- Custom `color-themes` from external files.
36
36
-`Portable` mode for storing temporary driver file and settings configuration next to the executable file.
37
37
-`Updated versions check` - manually from main menu.
38
38
39
39
Note: Some sensors are only available when running the application as administrator.
40
40
41
+
To add custom theme to the app, just create a `themes` folder next to the executable file and place any {themeName}.json files there.
42
+
Custom theme.json file content example:
43
+
```json
44
+
{
45
+
"DisplayName": "Custom Theme",
46
+
"DarkMode": true,
47
+
"BackgroundColor": "#1E1E1E",
48
+
"ForegroundColor": "#E9E9E9",
49
+
"HyperlinkColor": "#00D980",
50
+
"SelectedBackgroundColor": "#4CBB17",
51
+
"SelectedForegroundColor": "#000000",
52
+
"LineColor": "#262626",
53
+
"StrongLineColor": "#454545",
54
+
"WarnColor": "#FF4500"
55
+
}
56
+
```
57
+
Don't forget to restart the app to scan for new theme files!
58
+
59
+
41
60
### What does it look like?
42
61
43
62
Here's a preview of the app's UI with `Light`/`Dark` themes running on Windows 10:
0 commit comments