22 lines
479 B
JavaScript
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: [],
|
|
};
|