youtube-search / tailwind.config.js
soiz1's picture
Upload 30 files
606df3b verified
raw
history blame contribute delete
506 Bytes
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
mode: 'jit',
darkMode: 'class',
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Roboto', ...defaultTheme.fontFamily.sans]
},
colors: {
// https://www.tailwindshades.com/
primary: {},
secondary: {},
tertiary: {}
},
screens: {
xs: { max: '300px' }
}
}
},
plugins: []
}