parser.add_argument('-i','--image',dest='image',default=40,type=range_type,metavar='i',choices=range(0,101),help="Value should be within [0, 100] (default: %(default)s). Set the tone for the main image accent.")
parser.add_argument('-b','--button',dest='button',default=90,type=range_type,metavar='i',choices=range(0,101),help="Value should be within [0, 100] (default: %(default)s). Set the tone for the button accent.")
parser.add_argument('-t','--text',dest='text',default=10,type=range_type,metavar='i',choices=range(0,101),help="Value should be within [0, 100] (default: %(default)s). Set the tone for the button text accent.")
parser.add_argument('-o','--hover',dest='hover',default=80,type=range_type,metavar='i',choices=range(0,101),help="Value should be within [0, 100] (default: %(default)s). Set the tone for the hovering effect accent.")