pwa adjustments

This commit is contained in:
2023-07-06 01:12:24 +02:00
parent 5a7c4df70a
commit db8b1a72a4
9 changed files with 50 additions and 12 deletions

View File

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