/*
	character spoken lengths for colorchange
	
	specify characters -> lengths as:
	
		'x': 'string' // length of string is used as spoken length
		
	or
	
		'x': number // number is used as spoken length
*/

if (ColorChange) {
	ColorChange.spokenLengths = {
		'$': 'dollars',
		'£': 'pounds',
		'¢': 5,
		'@': 'at',
		'%': 'percent',
		'&': 'and',
		'+': 'plus',
		'=': 'equals'
	}
}
