Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created March 4, 2021 00:51
Show Gist options
  • Save tsh-code/c720a56a860756c3384397a735090bb3 to your computer and use it in GitHub Desktop.
Save tsh-code/c720a56a860756c3384397a735090bb3 to your computer and use it in GitHub Desktop.
module.exports = plugin(function({ addComponents, theme }) {
let base = {
borderRadius: '20px',
padding: '10px 30px',
fontWeight: 'bolder',
};
const newComponents = {
'.button-blue': {
...base,
background: theme('colors.blue.500'),
},
'.button-red': {
...base,
background: theme('colors.red.600'),
}
};
addComponents(newComponents, {
variants: ['responsive', 'hover'],
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment