You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
338 B

/** @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: [],
}

Powered by TurnKey Linux.