[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
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