30 lines
902 B
JavaScript
30 lines
902 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",
|
|
},
|
|
fontFamily: {
|
|
'poppins-bold': ['Poppins-Bold', 'sans-serif'],
|
|
'poppins-medium': ['Poppins-Medium', 'sans-serif'],
|
|
'poppins-regular': ['Poppins-Regular', 'sans-serif'],
|
|
'firaSans-blackItalic': ['FiraSans-BlackItalic', 'sans-serif'],
|
|
'firaSans-condensed': ['FiraSans-Condensed', 'sans-serif'],
|
|
'poppins-semiBoldItalic': ['Poppins-SemiBoldItalic', 'sans-serif'],
|
|
},
|
|
borderRadius: {
|
|
custom: "1rem",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|