forked from AkkomaGang/akkoma-fe
setColors -> applyTheme. For sanity. Also disabled export because nobody uses it
and should not use anyway.
This commit is contained in:
parent
fe2fe09236
commit
4b25475b57
1 changed files with 2 additions and 3 deletions
|
@ -71,7 +71,7 @@ const getTextColor = function (bg, text, preserve) {
|
|||
return text
|
||||
}
|
||||
|
||||
const setColors = (input, commit) => {
|
||||
const applyTheme = (input, commit) => {
|
||||
const { rules, theme } = generatePreset(input)
|
||||
const head = document.head
|
||||
const body = document.body
|
||||
|
@ -516,7 +516,7 @@ const setPreset = (val, commit) => {
|
|||
// load config -> set preset -> wait for styles.json to load ->
|
||||
// load persisted state -> set colors -> styles.json loaded -> set colors
|
||||
if (!window.themeLoaded) {
|
||||
setColors(data, commit)
|
||||
applyTheme(data, commit)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -524,7 +524,6 @@ const setPreset = (val, commit) => {
|
|||
export {
|
||||
setStyle,
|
||||
setPreset,
|
||||
setColors,
|
||||
getTextColor,
|
||||
generateColors,
|
||||
generateRadii,
|
||||
|
|
Loading…
Reference in a new issue