24 lines
562 B
JavaScript
24 lines
562 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: '#1a1a2e',
|
|
mist: '#fafafa',
|
|
ember: '#e85d04',
|
|
lagoon: '#2d6a4f',
|
|
haze: '#f0f0f0',
|
|
},
|
|
boxShadow: {
|
|
float: '0 8px 32px rgba(0, 0, 0, 0.08)',
|
|
},
|
|
fontFamily: {
|
|
display: ['"Avenir Next"', '"PingFang SC"', 'sans-serif'],
|
|
body: ['"IBM Plex Sans"', '"PingFang SC"', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|