websync / tailwind.config.js
Shivam
Initial commit: Web-SyncPlay moved into Streamer
d092f57
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
dark: {
400: "#666666",
500: "#505050",
600: "#414141",
700: "#313131",
800: "#212121",
900: "#121212",
1000: "#060606",
},
primary: {
700: "#33c146",
800: "#2CA73C",
900: "#2ba13b",
},
accent: {
900: "#4D7EA8",
},
},
},
},
}