-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.72 KB
/
Copy pathtailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'sans': ['"NEXON Lv2 Gothic"', '"Pretendard Variable"', 'Pretendard', '-apple-system', 'BlinkMacSystemFont', '"Malgun Gothic"', '"맑은 고딕"', 'system-ui', 'Roboto', '"Helvetica Neue"', '"Segoe UI"', '"Apple SD Gothic Neo"', '"Noto Sans KR"', '"Nanum Gothic"', 'sans-serif'],
'bebas': ['"Bebas Neue"', 'cursive'],
'russo': ['"Russo One"', 'sans-serif'],
'noto': ['"NEXON Lv2 Gothic"', '"Pretendard Variable"', 'Pretendard', '"Malgun Gothic"', '"맑은 고딕"', 'sans-serif'],
'pretendard': ['"Pretendard Variable"', 'Pretendard', '"Malgun Gothic"', '"맑은 고딕"', 'sans-serif'],
'nexon': ['"NEXON Lv2 Gothic"', '"Malgun Gothic"', '"맑은 고딕"', 'sans-serif'],
},
colors: {
// Fiorentina inspired color palette
'custom-bg': '#351f63', // 메인 배경 (유지)
'violet': {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6', // 메인 보라색
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
},
'accent': {
'gold': '#fbbf24', // 금색 악센트
'silver': '#e5e7eb', // 은색 악센트
'light-purple': '#a855f7', // 밝은 보라색
},
// 기존 primary 색상들 (필요시 사용)
primary: '#ff2f17',
'primary-light': '#ff4a35',
'primary-dark': '#e62a15',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}