Utilities for controlling an element's outline.
export default {
  theme: {
    extend: {
      outline: {
        blue: '2px solid #0000ff',
      },
    },
  },
}
You can also provide an outline-offset value for any custom outline utilities using a tuple of the form [outline, outlineOffset]:
export default {
  theme: {
    extend: {
      outline: {
        blue: ['2px solid #0000ff', '1px'],
      },
    },
  },
}