Changes between Version 46 and Version 47 of Docs/825gen2/Dev/DeveloperNews
- Timestamp:
- 04/11/25 07:39:48 (8 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/DeveloperNews
v46 v47 9 9 To insure apps work properly in dark mode apps should not be coded with fixed colors. For example, //SetBkColor(nColorWhite);// should be changed to //SetBkColor(COLOR_BKGND)//. //SetCurColor(nColorBlack);// should be changed to //SetCurColor(COLOR_INFO);// or some other non-fixed color identifier. 10 10 11 From ssh apps can be tested in normal or dark mode by setting the environment variable DARKMODE as 0 or 1. For example :11 From ssh apps can be tested in normal or dark mode by setting the environment variable DARKMODE as 0 or 1. For example to run //myapp// in dark mode: 12 12 {{{ 13 13 export DARKMODE=1