Nuxt 초기 세팅 추가
This commit is contained in:
25
tailwind.config.js
Normal file
25
tailwind.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./components/**/*.{vue,js}',
|
||||
'./layouts/**/*.vue',
|
||||
'./pages/**/*.vue',
|
||||
'./app.vue',
|
||||
'./error.vue'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
pretendard: ['Pretendard', 'ui-sans-serif', 'system-ui', 'sans-serif']
|
||||
},
|
||||
colors: {
|
||||
ink: '#1f2328',
|
||||
muted: '#6b7280',
|
||||
line: '#e5e7eb',
|
||||
paper: '#ffffff',
|
||||
surface: '#f7f7f4'
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
}
|
||||
Reference in New Issue
Block a user