Reactive-Resume/client/tailwind.config.js

26 lines
687 B
JavaScript
Raw Normal View History

2022-03-02 16:44:11 +00:00
const { join } = require('path');
2022-03-06 21:48:29 +00:00
const colors = require('tailwindcss/colors');
const typography = require('@tailwindcss/typography');
2022-03-02 16:44:11 +00:00
module.exports = {
darkMode: 'class',
content: [
join(__dirname, 'pages/**/*.{js,ts,jsx,tsx,css,scss}'),
join(__dirname, 'modals/**/*.{js,ts,jsx,tsx,css,scss}'),
join(__dirname, 'templates/**/*.{js,ts,jsx,tsx,css,scss}'),
join(__dirname, 'components/**/*.{js,ts,jsx,tsx,css,scss}'),
join(__dirname, 'utils/**/*.{js,ts,jsx,tsx,css,scss}'),
],
theme: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
extend: {
colors: {
primary: colors.teal,
},
},
},
plugins: [typography],
2022-03-02 16:44:11 +00:00
};