📝 Update autochange docs

This commit is contained in:
Miguel Avila 2022-01-23 18:29:03 -06:00
parent 0c56923c2a
commit f369592860
2 changed files with 9 additions and 5 deletions

View File

@ -237,11 +237,15 @@ The theme can be automatically changed by the OS' current theme or personalized
that you can change in the `config.js` file:
```js
// Autochange dark-theme (24hrs format, string must be in format: hh:mm)
// Autochange
autoChangeTheme: true,
changeThemeByOS: false,
// Autochabge by OS
changeThemeByOS: false,
// Autochange by hour options (24hrs format, string must be in: hh:mm)
changeThemeByHour: true, // If it's true, it will use the values below:
hourDarkThemeActive: '19:00', // Turn on the dark theme after this hour
hourDarkThemeActive: '18:30', // Turn on the dark theme after this hour
hourDarkThemeInactive: '07:00', // Turn off the dark theme after this hour and before the above hour
```

View File

@ -34,8 +34,8 @@ const CONFIG = {
// Autochange
autoChangeTheme: true,
// by OS
// Autochabge by OS
changeThemeByOS: false,
// Autochange by hour options (24hrs format, string must be in: hh:mm)