mirror of
https://github.com/fzumpe/foundry-usernotes.git
synced 2026-06-06 21:00:03 +02:00
20 lines
663 B
JavaScript
20 lines
663 B
JavaScript
export const USER_NOTES_MODULE_ID = "user-notes";
|
|
export const USER_NOTES_WINDOW_ID = "user-notes-window";
|
|
export const USER_NOTES_TOOL_ID = "user-notes-open";
|
|
|
|
export const USER_NOTES_DEFAULT_POSITION = {
|
|
left: 200,
|
|
top: 150,
|
|
width: 500,
|
|
height: 400
|
|
};
|
|
|
|
export const USER_NOTES_MIN_WIDTH = 280;
|
|
export const USER_NOTES_MIN_HEIGHT = 180;
|
|
export const USER_NOTES_VIEWPORT_MARGIN = 40;
|
|
|
|
export const USER_NOTES_DEFAULT_BACKGROUND = "rgba(25, 24, 19, 0.96)";
|
|
export const USER_NOTES_DEFAULT_TEXT_COLOR = "#f0f0e0";
|
|
export const USER_NOTES_DEFAULT_TEXTAREA_BACKGROUND = "rgba(255, 255, 255, 0.92)";
|
|
export const USER_NOTES_DEFAULT_TEXTAREA_COLOR = "#111111";
|