Refactor(Tool): Add variable isDarkMode into global js variables

This commit is contained in:
2024-11-07 17:10:57 +08:00
parent 71119ac4c4
commit 3f6fcc0106
2 changed files with 2 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
const globalVariables = { const globalVariables = {
OxygenTheme: { OxygenTheme: {
isDarkMode: true,
blue: '#1677FF', blue: '#1677FF',
purple: '#722ED1', purple: '#722ED1',
cyan: '#13C2C2', cyan: '#13C2C2',

View File

@@ -1,5 +1,6 @@
const globalVariables = { const globalVariables = {
OxygenTheme: { OxygenTheme: {
isDarkMode: false,
blue: '#1677FF', blue: '#1677FF',
purple: '#722ED1', purple: '#722ED1',
cyan: '#13C2C2', cyan: '#13C2C2',