()
| 73 | }; |
| 74 | |
| 75 | const setDark = () => { |
| 76 | theme.algorithm = antTheme.darkAlgorithm; |
| 77 | document.body.classList.add("app-dark-theme"); |
| 78 | document.body.classList.remove("app-light-theme"); |
| 79 | }; |
| 80 | |
| 81 | const resetTheme = () => (currentTheme.value = AppTheme.LIGHT); |
| 82 |