28 lines
625 B
JavaScript
28 lines
625 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Pretendard Variable', 'Pretendard', 'system-ui', 'sans-serif']
|
|
},
|
|
colors: {
|
|
ink: {
|
|
DEFAULT: '#1c1c1e',
|
|
muted: '#636366'
|
|
},
|
|
surface: {
|
|
DEFAULT: '#ffffff',
|
|
subtle: '#f2f2f7'
|
|
},
|
|
line: '#d1d1d6',
|
|
accent: '#007aff'
|
|
},
|
|
boxShadow: {
|
|
card: '0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04)'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|