16 lines
257 B
JavaScript
16 lines
257 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primaryDark: "#2F2F3E",
|
|
primaryLight: "#B5B5EF",
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|