moblie-website/tailwind.config.cjs
2025-01-21 23:37:04 +08:00

23 lines
978 B
JavaScript

module.exports = {
content: ['./src/**/*.{vue,js,ts}'],
theme: {
extend: {
colors: {
'primary': '#ffff', // 主色(可以根据设计稿修改)
'secondary': '#4CAF50', // 辅助色(可以根据设计稿修改)
'accent': '#1E40AF', // 强调色(可以根据设计稿修改)
'neutral': '#F0F0F0', // 中性色(可以根据设计稿修改)
'dark': '#2D2D2D', // 深色(可以根据设计稿修改)
'header-background': '#00000033', // 头部背景颜色
'header-text': '#ffffff', // 头部文字颜色
'header-hover': '#FF6347', // 头部hover颜色
'carousel-text': '#00E5FF', // 轮播图文字颜色
'group-btn': '#a4e3f4b3', // 组按钮颜色
'background-active': 'linear-gradient(270deg, #5B63F6 -3.11%, #0D90FF 100%)', // 背景颜色
'introduce-text': '#00FFEE', // 介绍文字颜色
},
},
},
plugins: [require('daisyui')],
};