mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 12:20:20 +01:00
23 lines
661 B
TypeScript
23 lines
661 B
TypeScript
export const MILLISECONDS_IN_SECOND = 1000;
|
|
|
|
export const baseZindex = 1000;
|
|
export const zindexLevelSize = 100;
|
|
export const iconsZindexLevel = 1;
|
|
export const windowsZindexLevel = 2;
|
|
export const taskbarZindexLevel = 3;
|
|
export const foregroundZindex =
|
|
baseZindex + windowsZindexLevel * zindexLevelSize + zindexLevelSize / 2;
|
|
|
|
export const WINDOW_PADDING = 15;
|
|
export const TASKBAR_HEIGHT = 30;
|
|
export const TITLEBAR_HEIGHT = 22;
|
|
export const MAXIMIZE_ANIMATION_SPEED_IN_SECONDS = 0.2;
|
|
|
|
export const ROOT_DIRECTORY = '/';
|
|
|
|
export const CLICK_DELAY_IN_MILLISECONDS = 300;
|
|
|
|
export const NEXT_CONTAINER_ID = '__next';
|
|
|
|
export const CNAME = 'x.dustinbrett.com';
|