workspaces_registry_template/site/tailwind.config.js

20 lines
338 B
JavaScript
Raw Normal View History

2022-12-14 15:03:50 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
app: {
900: '#5f4c7c',
800: '#9178bd',
700: '#b199da'
}
}
},
},
plugins: [],
}