Out of the box, selects, checkboxes, and radios look awful in Tailwind and the only way to make them look better is with custom CSS.
The goal of this project is to provide a better starting point for form elements that looks good out of the box but is still fairly neutral, and is easy to customize by adding utilities instead of having to write the complex CSS necessary to style form elements across browsers yourself.
Install the plugin using npm or Yarn:
# Using npm npm install @tailwindcss/custom-forms --save-dev # Using Yarn yarn add @tailwindcss/custom-forms -D
tailwind.config.js
fileAdd the plugin to the plugins
section of your tailwind.config.js
file:
// tailwind.config.js module.exports = { // ... plugins: [ require('@tailwindcss/custom-forms'), ] }
The plugin will generate a handful of new classes that you can use to style your forms:
form-input
, form-textarea
, form-select
, form-multiselect
, form-checkbox
, and form-radio
.
Simply add those classes to the corresponding HTML elements to apply some sensible default form styles that look the same in all browsers, and are easy to tweak with utilities:
<label class="block">
<span class="text-gray-700">Name</span>
<input class="form-input mt-1 block w-full" placeholder="Jane Doe">
</label>
<div class="mt-4">
<span class="text-gray-700">Account Type</span>
<div class="mt-2">
<label class="inline-flex items-center">
<input type="radio" class="form-radio" name="accountType" value="personal">
<span class="ml-2">Personal</span>
</label>
<label class="inline-flex items-center ml-6">
<input type="radio" class="form-radio" name="accountType" value="busines">
<span class="ml-2">Business</span>
</label>
</div>
</div>
<label class="block mt-4">
<span class="text-gray-700">Requested Limit</span>
<select class="form-select mt-1 block w-full">
<option>$1,000</option>
<option>$5,000</option>
<option>$10,000</option>
<option>$25,000</option>
</select>
</label>
<div class="flex mt-6">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox">
<span class="ml-2">I agree to the <span class="underline">privacy policy</span></span>
</label>
</div>
Add basic styles to a normal input
element using the form-input
class.
<label class="block">
<span class="text-gray-700">Input</span>
<input type="email" class="form-input mt-1 block w-full" placeholder="john@example.com">
</label>
Add basic styles to a textarea
element using the form-textarea
class.
<label class="block">
<span class="text-gray-700">Textarea</span>
<textarea class="form-textarea mt-1 block w-full" rows="3" placeholder="Enter some long form content."></textarea>
</label>
Add basic styles to a select
element using the form-select
class.
<label class="block">
<span class="text-gray-700">Select</span>
<select class="form-select block w-full mt-1">
<option>Option 1</option>
<option>Option 2</option>
</select>
</label>
If you are using the multiple
attribute on a select
element, use the form-multiselect
class
instead.
<label class="block">
<span class="text-gray-700">Multiselect</span>
<select class="form-multiselect block w-full mt-1" multiple>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
<option>Option 5</option>
</select>
</label>
Control the layout of the checkbox and label however you like — the form-checkbox
class doesn't
impose any opinions in that regard. Here we've used flexbox to center the checkbox with the label.
<div class="block">
<span class="text-gray-700">Checkboxes</span>
<div class="mt-2">
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox" checked>
<span class="ml-2">Option 1</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox">
<span class="ml-2">Option 2</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox">
<span class="ml-2">Option 3</span>
</label>
</div>
</div>
</div>
You can customize the background color of a checkbox when it's checked by using Tailwind's text
color utilities, like text-indigo-600
.
<div class="block">
<span class="text-gray-700">Checkboxes</span>
<div class="mt-2">
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-indigo-600" checked>
<span class="ml-2">Option 1</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-green-500" checked>
<span class="ml-2">Option 2</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox text-pink-600" checked>
<span class="ml-2">Option 3</span>
</label>
</div>
</div>
</div>
By default, checkboxes will match the current font size. If you want to give them an explicit size,
use Tailwind's width and height utilities, like h-6
and w-6
.
<div class="block">
<span class="text-gray-700">Checkboxes</span>
<div class="mt-2">
<div>
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox h-4 w-4" checked>
<span class="ml-2">Option 1</span>
</label>
</div>
<div class="mt-1">
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox h-6 w-6">
<span class="ml-3 text-lg">Option 2</span>
</label>
</div>
<div class="mt-1">
<label class="inline-flex items-center">
<input type="checkbox" class="form-checkbox h-8 w-8">
<span class="ml-4 text-xl">Option 3</span>
</label>
</div>
</div>
</div>
Control the layout of the radio button and label however you like — the form-radio
class doesn't
impose any opinions in that regard. Here we've used flexbox to center the radio button with the label.
<div class="block">
<span class="text-gray-700">Radio Buttons</span>
<div class="mt-2">
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio" name="radio" value="1" checked>
<span class="ml-2">Option 1</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio" name="radio" value="2">
<span class="ml-2">Option 2</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio" name="radio" value="3">
<span class="ml-2">Option 3</span>
</label>
</div>
</div>
</div>
You can customize the background color of a radio button when it's checked by using Tailwind's text
color utilities, like text-indigo-600
.
<div class="block">
<span class="text-gray-700">Radio Buttons</span>
<div class="mt-2">
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio text-indigo-600" name="radio-colors" value="1" checked>
<span class="ml-2">Option 1</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio text-green-500" name="radio-colors" value="2">
<span class="ml-2">Option 2</span>
</label>
</div>
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio text-pink-600" name="radio-colors" value="3">
<span class="ml-2">Option 3</span>
</label>
</div>
</div>
</div>
By default, radio buttons will match the current font size. If you want to give them an explicit size,
use Tailwind's width and height utilities, like h-6
and w-6
.
<div class="block">
<span class="text-gray-700">Radio Buttons</span>
<div class="mt-2">
<div>
<label class="inline-flex items-center">
<input type="radio" class="form-radio h-4 w-4" name="radio-sizes" value="1" checked>
<span class="ml-2">Option 1</span>
</label>
</div>
<div class="mt-1">
<label class="inline-flex items-center">
<input type="radio" class="form-radio h-6 w-6" name="radio-sizes" value="2">
<span class="ml-3 text-lg">Option 2</span>
</label>
</div>
<div class="mt-1">
<label class="inline-flex items-center">
<input type="radio" class="form-radio h-8 w-8" name="radio-sizes" value="3">
<span class="ml-4 text-xl">Option 3</span>
</label>
</div>
</div>
</div>
You can customize the default styles applied by this plugin in the theme.customForms.default
section of your tailwind.config.js
file.
Each form element can be customized under the input
, textarea
, select
, multiselect
,
checkbox
, and radio
keys respectively.
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { input: { borderRadius: theme('borderRadius.lg'), backgroundColor: theme('colors.gray.200'), '&:focus': { backgroundColor: theme('colors.white'), } }, select: { borderRadius: theme('borderRadius.lg'), boxShadow: theme('boxShadow.default'), }, checkbox: { width: theme('spacing.6'), height: theme('spacing.6'), }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
The configuration format is the same CSS-in-JS syntax used to author Tailwind plugins, so you are free to customize or add any CSS properties you like.
See the default options used by the plugin for a complete reference of styles that are applied out of the box.
Providing a carefully encoded SVG data URI to the backgroundImage
property can be a bit
cumbersome, so to make icon customization easier this plugin allows you to provide a normal
unencoded SVG using a special icon
property instead:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { select: { icon: '<svg fill="#e2e8f0" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"/></svg>', }, checkbox: { icon: '<svg fill="#fff" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg>' }, radio: { icon: '<svg fill="#fff" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="3"/></svg>' }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
You can also switch to a different icon for different states, like if you wanted to change the checkmark on hover:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { checkbox: { icon: '<svg fill="#1a202c" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg>', '&:hover': { icon: '<svg fill="#4a5568" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg>', }, }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
Checkbox and radio icons are automatically hidden unless the elements are :checked
, so you don't
need to include that pseudo-selector in your configuration when using the special icon
property.
If you are happy with the default icons and just want to customize the color, you can use the
special iconColor
property to customize the color without re-specifying the entire SVG:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { select: { iconColor: theme('colors.white'), }, checkbox: { iconColor: theme('colors.indigo.700'), }, radio: { iconColor: theme('colors.indigo.700'), }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
You can also change the iconColor
for different states:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { checkbox: { iconColor: theme('colors.gray.800'), '&:hover': { iconColor: theme('colors.gray.700'), }, }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
Just like with the icon
property, you don't need to worry about including the :checked
pseudo-selector for checkboxes and radios.
If you are using a custom icon and still want to use the iconColor
property to make it easy to
change the color without re-specifying your entire custom SVG, define your custom icon as a callback
that receives the icon color:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { checkbox: { icon: iconColor => `<svg fill="${iconColor}" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg>`, iconColor: theme('colors.gray.800'), '&:hover': { iconColor: theme('colors.gray.700'), }, }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
Although we've tried to make the default styles as neutral as possible while still looking well-designed, sometimes one of the styles we're providing out-of-the-box might be too opinionated for your project and painful to simply override.
If you'd like to completely unset one of the default styles, explicitly set that property to
undefined
to prevent the plugin from including that property in the final CSS:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { input: { '&:focus': { boxShadow: undefined, borderColor: undefined, }, }, } }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
Often you'll want to set the same defaults for several different elements, and duplicating all of those styles can be a little verbose.
To specify styles for multiple elements at the same time, simply provide all of the elements you'd like to style as a comma-separated list:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ default: { 'input, textarea, multiselect, select': { borderRadius: theme('borderRadius.lg'), }, 'input, textarea, multiselect': { backgroundColor: theme('colors.gray.900'), }, select: { backgroundColor: theme('colors.gray.600'), }, }, }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
You'll often need multiple form element styles in a single project, for example light form controls that are meant for light backgrounds, and dark form controls for dark backgrounds.
This plugin lets you create "modifiers" for your form classes by adding extra top-level keys in the
theme.customForms
section of your config file.
For example, this configuration adds a dark
modifier:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ dark: { 'input, textarea, multiselect, checkbox, radio': { backgroundColor: theme('colors.gray.900'), }, select: { backgroundColor: theme('colors.gray.600'), }, } }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
This generates extra classes like form-input-dark
, form-textarea-dark
, form-select-dark
, etc.
It's important to note that modifiers are not automatically merged with the default styles and are designed to be used with the multi-class modifier pattern.
That means you should always include the default class for an element when using a modifier:
<input class="form-input form-input-dark">
This makes it easy to create modifiers that serve different purposes that can still be composed.
For example, here we're configuring a dark
color modifier, and a sm
size modifier:
// tailwind.config.js module.exports = { theme: { customForms: theme => ({ dark: { 'input, textarea, multiselect, checkbox, radio': { backgroundColor: theme('colors.gray.900'), }, select: { backgroundColor: theme('colors.gray.600'), }, }, sm: { 'input, textarea, multiselect, select': { fontSize: theme('fontSize.sm'), padding: `${theme('spacing.1')} ${theme('spacing.2')}`, }, select: { paddingRight: `${theme('spacing.4')}`, }, 'checkbox, radio': { width: theme('spacing.3'), height: theme('spacing.3'), }, } }) }, plugins: [ require('@tailwindcss/custom-forms'), ] }
By using the multi-class pattern, we can combine these modifiers in our HTML to produce form elements that are both dark and small, without creating any new classes:
<input class="form-input form-input-dark form-input-sm">