Select the types of activity you want to include in your feed.
1/** @type {import('tailwindcss').Config} */ 2module.exports = { 3 content: ['./bun/*.{js,ts,jsx,tsx}'], 4 theme: { 5 extend: { 6 invert: { 7 25: '.25', 8 50: '.5', 9 75: '.75', 10 85: '.85', 11 }, 12 }, 13 }, 14 plugins: [], 15}