PadApp/index.js
jusax23 6c68f2bf20
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
basic menu, colors, else
2022-12-11 22:23:21 +01:00

26 lines
No EOL
567 B
JavaScript

import { Stear, SWindow } from "./stear/main.js";
import {applyScrollBarCss1} from "./stear/extra/Style/scrollBar1.js"
import start from "./pages/start.jsx";
import * as color from "./js/color.js"
var stear = new Stear(document.querySelector("#stear"));
stear.style({
backgroundColor: color.bg(),
fontFamily: "Helvetica Neue",
fontWeight: "lighter",
fontSize: "0.9em",
color: color.text(),
});
applyScrollBarCss1();
stear.call(start, {});
window.stear = stear;
Stear.addLanguageFile({
}, "de");
Stear.lang = "de";
window.stear = stear;