IntegrateIntegration ModesHosted FieldsCustomizationOn this pageCustomize Hosted Fields You can fully control the appearance of input fields in the Hosted Fields Checkout using the stylesheet.overrides object when initializing your widget. This gives you the flexibility to match the style of your brand and user interface. Example Integration Here's how you can inject custom style variables into your widget configuration: ui: { stylesheet: { overrides: { 'usp-input-text-color': '#000000', 'usp-input-border-color': '#ACACAC', 'usp-input-height': '2.6rem', 'usp-input-border-radius': '4px', 'usp-input-bg-color': '#FFFFFF' } }} TipYou don't need to specify all variables. Just override the ones you want to change. Available Input Style Variables VariableDescriptionTypeExampleusp-input-widthSpecifies the width of the input fieldlength300pxusp-input-bg-colorBackground color of the input fieldcolor#FFFFFFusp-input-border-colorBorder color of the input fieldcolor#ACACACusp-input-border-radiusBorder radius of the input fieldlength4pxusp-input-border-widthBorder width of the input fieldlength1pxusp-input-focused-border-colorBorder color when the field is focusedcolor#7A7A7Ausp-input-heightHeight of the input fieldlength2.6remusp-input-l-widthWidth of the large-sized inputlength500pxusp-input-m-widthWidth of the medium-sized inputlength290pxusp-input-s-widthWidth of the small-sized inputlength110pxusp-input-xs-widthWidth of the extra small-sized inputlength90pxusp-input-placeholder-colorPlaceholder text colorcolor#ACACACusp-input-text-colorText color of user inputcolor#000000