17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,jsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
neonGreen: "#00ff9f",
|
|
neonRed: "#ff3b3b",
|
|
neonBlue: "#3b82f6",
|
|
neonPink: "#ff00c8",
|
|
neonGold: "#facc15",
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|