21 lines
439 B
JavaScript
21 lines
439 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
backgroundColor: {
|
|
"black-color": "#000000",
|
|
"yellow-color": "#FFF000",
|
|
},
|
|
textColor: {
|
|
"my-text-color": "#000000",
|
|
"black-color-300": "#A7A7A7",
|
|
},
|
|
borderRadius: {
|
|
custom: "1rem",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|