21 lines
382 B
JavaScript
21 lines
382 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{ts,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// keep some of the existing palette if desired
|
|
accent: {
|
|
DEFAULT: "#aa3bff",
|
|
50: "rgba(170, 59, 255, 0.1)",
|
|
500: "#aa3bff"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|