mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 17:32:41 +00:00
fix: server load interferes with spa
This commit is contained in:
14
src/lib/style/theme.ts
Normal file
14
src/lib/style/theme.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user