26 lines
521 B
JavaScript
26 lines
521 B
JavaScript
import colors from "tailwindcss/colors"
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
secondary: {
|
|
DEFAULT: colors.neutral[200],
|
|
hover: colors.neutral[300],
|
|
border: colors.neutral[400],
|
|
text: colors.neutral[500],
|
|
dark: colors.neutral[800],
|
|
["dark-hover"]: colors.neutral[900]
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|