crosssubtitle-ai/tailwind.config.js
2026-03-18 15:36:08 +08:00

24 lines
566 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,ts,tsx}'],
theme: {
extend: {
colors: {
ink: '#0f172a',
mist: '#f8fafc',
ember: '#c2410c',
lagoon: '#0f766e',
haze: '#dbeafe',
},
boxShadow: {
float: '0 24px 60px rgba(15, 23, 42, 0.18)',
},
fontFamily: {
display: ['"Avenir Next"', '"PingFang SC"', 'sans-serif'],
body: ['"IBM Plex Sans"', '"PingFang SC"', 'sans-serif'],
},
},
},
plugins: [],
}