This commit is contained in:
tugcekucukoglu
2024-08-05 09:27:58 +03:00
parent 3ba6d75db2
commit 4c7b0c0f5d
101 changed files with 119 additions and 117 deletions

View File

@@ -18,7 +18,7 @@ onMounted(() => {
setColorOptions();
});
const setColorOptions = () => {
function setColorOptions() {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
@@ -216,7 +216,7 @@ const setColorOptions = () => {
}
}
};
};
}
watch(
[getPrimary, getSurface, isDarkTheme],