// CONFIGURATION
window.TextInputConfig = {
// Position:
// "center", "top", "bottom", "top-left", "top-right", "bottom-left", "bottom-right"
position: "center",
customX: null,
customY: null,
// Size
width: 600,
padding: 30,
// Background (leave empty to use VNM skin)
backgroundImage: "",
backgroundColor: "",
overlayColor: "rgba(0,0,0,0.5)",
// VNM Integration
useVNMSkin: true,
useVNMCursor: true,
// Fonts
fontFamily: '"Times New Roman", serif',
fontSize: 28,
fontColor: "#ffffff",
outlineColor: "#000000",
outlineWidth: 2,
// Input Field
inputBackgroundColor: "#ffffff",
inputTextColor: "#000000",
inputFontSize: 28,
inputPlaceholder: "Enter name...",
// Buttons
showButtons: true,
confirmButtonText: "Confirm",
cancelButtonText: "Cancel",
buttonFontSize: 22,
buttonTextColor: "#ffffff",
buttonBackgroundColor: "",
buttonBackgroundImage: "",
// Instructions
showInstructions: true,
instructionsText: "Press ENTER to confirm, ESC to cancel",
instructionsFontSize: 22
};