[READ-ONLY] Mirror of https://github.com/flo-bit/youtube-party-dj. democratic youtube player, everyone can vote and add songs, uni project, made with uix
0

Configure Feed

Select the types of activity you want to include in your feed.

youtube-party-dj / tailwind.config.js
372 B 17 lines
1import colors from 'tailwindcss/colors'; 2 3 4/** @type {import('tailwindcss').Config} */ 5module.exports = { 6 content: ["./backend/**/*.{html,ts,tsx}", "./frontend/**/*.{html,ts,tsx}", "./common/**/*.{html,ts,tsx}"], 7 theme: { 8 extend: { 9 colors: { 10 accent: colors.rose, 11 } 12 }, 13 }, 14 plugins: [require('@tailwindcss/forms')], 15 darkMode: 'class' 16} 17