22 lines
532 B
JavaScript
22 lines
532 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ["./src/**/*.{html,js,vue,ts}"],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
borderRadius: {
|
||
|
|
full: "100%",
|
||
|
|
},
|
||
|
|
fontSize: {
|
||
|
|
'custom-size': '0.4rem', // 20px
|
||
|
|
'mid-size': '0.5rem', // 24px
|
||
|
|
'min-size': '0.3rem', // 12px
|
||
|
|
},
|
||
|
|
backgroundImage: {
|
||
|
|
"bg-pattern": "url('@/assets/bg.png')",
|
||
|
|
'custom-gradient': 'linear-gradient(180deg, #58A3FE 0%, #43C5E8 100%, #3FC6E8 100%)',
|
||
|
|
}
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|