git: 원격 저장소 연결 및 초기 커밋
Made-with: Cursor
This commit is contained in:
27
tailwind.config.js
Normal file
27
tailwind.config.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/** @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: []
|
||||
}
|
||||
Reference in New Issue
Block a user