Initial commit

This commit is contained in:
Paul Fey 2025-06-20 09:47:10 +02:00
commit c310cd7943
19 changed files with 3939 additions and 0 deletions

View file

@ -0,0 +1,2 @@
export const DEFAULT_COLOR = 0xfc6950;
export const DEFAULT_COLOR_TRANSPARENT = 0xfeb4a8;

2
utils/config/device.js Normal file
View file

@ -0,0 +1,2 @@
import { getDeviceInfo } from "@zos/device";
export const { width: DEVICE_WIDTH, height: DEVICE_HEIGHT } = getDeviceInfo();