21 lines
480 B
JavaScript
21 lines
480 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/pages/index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#fa2c19', // Theme Red
|
|
secondary: '#ff5d45', // Lighter Red
|
|
surface: '#ffffff',
|
|
},
|
|
boxShadow: {
|
|
'card': '0 2px 8px rgba(0, 0, 0, 0.04)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: process.env.TARO_ENV === 'h5',
|
|
},
|
|
};
|