activity-cebg/tailwind.config.js
huangjinming c0e219ab3d ffi
2023-04-21 16:40:05 +08:00

22 lines
479 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": "#34290A",
"black-color-300": "#A7A7A7",
"text-yellow-color": "#FFB900",
},
borderRadius: {
custom: "1rem",
},
},
},
plugins: [],
};