Skip to content

Instantly share code, notes, and snippets.

@jorgeprj
Created February 2, 2024 19:49
Show Gist options
  • Save jorgeprj/8786439c198aa810bd922d1f9d6a6721 to your computer and use it in GitHub Desktop.
Save jorgeprj/8786439c198aa810bd922d1f9d6a6721 to your computer and use it in GitHub Desktop.
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
export default {
content: [
"./src/**/*.jsx"
],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
colors: {
'success': '#04A96B',
}
},
},
plugins: [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment