activity-cebg/tailwind.config.js
huangjinming 4db03ad52c ffi
2023-04-21 13:47:38 +08:00

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: [],
};