refactor: use standard prettier formatting

This commit is contained in:
2024-04-06 13:15:35 +02:00
parent 86ec8651b6
commit 854ab6d3be
106 changed files with 2703 additions and 2046 deletions

View File

@@ -1,10 +1,14 @@
import {argbFromHex, hexFromArgb, themeFromSourceColor} from "@material/material-color-utilities"
import {
argbFromHex,
hexFromArgb,
themeFromSourceColor,
} from "@material/material-color-utilities";
export const themeBase = "#6D81C7"
export const themeSuccessBase = "#00ff00"
export const themeBase = "#6D81C7";
export const themeSuccessBase = "#00ff00";
const theme = themeFromSourceColor(argbFromHex(themeBase), [
{name: "success", value: argbFromHex(themeSuccessBase), blend: true},
])
{ name: "success", value: argbFromHex(themeSuccessBase), blend: true },
]);
export const themeColor = hexFromArgb(theme.schemes.dark.background)
export const themeColor = hexFromArgb(theme.schemes.dark.background);