mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-04-22 06:08:00 +00:00
15 lines
362 B
JavaScript
15 lines
362 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
majorMono: ['Major Mono Display', 'monospace'],
|
||
|
poppins: ['Poppins', 'sans-serif'],
|
||
|
robotoCondensed: ['"Roboto Condensed"', 'sans-serif']
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
plugins: []
|
||
|
}
|