mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-13 08:20:34 +00:00
new logo and styling tweaks
This commit is contained in:
parent
adf601c572
commit
e56dccc7f1
33 changed files with 533 additions and 21 deletions
14
src/pages/api/theme.js
Normal file
14
src/pages/api/theme.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
import checkAndCopyConfig, { getSettings } from "utils/config/config";
|
||||
|
||||
export default function handler({ res }) {
|
||||
checkAndCopyConfig("settings.yaml");
|
||||
const settings = getSettings();
|
||||
|
||||
const color = settings.color || "slate";
|
||||
const theme = settings.theme || "dark";
|
||||
|
||||
return res.status(200).json({
|
||||
color,
|
||||
theme,
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue