Variable defaultCaptchaOptionsConst

defaultCaptchaOptions: SetCaptchaOptions = ...

Default configuration options for captcha text.

These values are used when no custom options are provided. They represent a balanced configuration that provides good security while maintaining readability.

Example

// These are the default values used internally
const defaults = {
characters: 6, // 6 random characters
size: 40, // 40px font size
font: 'Sans', // Sans-serif font
skew: true, // Enable skewing
colors: [], // No color array (uses single color)
rotate: 5, // Max 5 degrees rotation
color: '#32cf7e', // Green color
opacity: 0.8 // 80% opacity
};