@mandujs/core 0.18.11 → 0.18.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -218,8 +218,8 @@ export function ManduBadge({
|
|
|
218
218
|
cursor: 'pointer',
|
|
219
219
|
transition: `all ${animation.duration.normal} ${animation.easing.spring}`,
|
|
220
220
|
boxShadow: isHovered
|
|
221
|
-
? `0 8px 24px rgba(
|
|
222
|
-
: `0 4px 12px rgba(
|
|
221
|
+
? `0 8px 24px rgba(8, 6, 18, 0.4), 0 0 0 4px ${stateColor}33`
|
|
222
|
+
: `0 4px 12px rgba(8, 6, 18, 0.3)`,
|
|
223
223
|
fontSize: '22px',
|
|
224
224
|
userSelect: 'none',
|
|
225
225
|
transform: isHovered ? 'scale(1.08)' : 'scale(1)',
|
|
@@ -14,21 +14,21 @@ export const colors = {
|
|
|
14
14
|
accent: '#E8967A', // 새우 만두 분홍
|
|
15
15
|
},
|
|
16
16
|
semantic: {
|
|
17
|
-
success: '#
|
|
18
|
-
warning: '#
|
|
19
|
-
error: '#
|
|
20
|
-
info: '#
|
|
17
|
+
success: '#7EC8A0', // 세이지 그린 (따뜻한 톤)
|
|
18
|
+
warning: '#E8B84D', // 앰버 (부드러운 경고)
|
|
19
|
+
error: '#E86464', // 소프트 레드
|
|
20
|
+
info: '#7AAFC8', // 스틸 블루 (차분한 정보)
|
|
21
21
|
},
|
|
22
22
|
background: {
|
|
23
|
-
dark: '#
|
|
24
|
-
medium: '#
|
|
25
|
-
light: '#
|
|
26
|
-
overlay: 'rgba(
|
|
23
|
+
dark: '#1C1B2E', // 따뜻한 다크 인디고
|
|
24
|
+
medium: '#2A2940', // 따뜻한 미디엄
|
|
25
|
+
light: '#3A3854', // 따뜻한 라이트
|
|
26
|
+
overlay: 'rgba(10, 8, 20, 0.88)',
|
|
27
27
|
},
|
|
28
28
|
text: {
|
|
29
|
-
primary: '#
|
|
30
|
-
secondary: '#
|
|
31
|
-
muted: '#
|
|
29
|
+
primary: '#F0EDE8', // 크림 화이트 (따뜻한 톤)
|
|
30
|
+
secondary: '#A8A4A0', // 따뜻한 그레이
|
|
31
|
+
muted: '#6B6866', // 따뜻한 뮤트
|
|
32
32
|
},
|
|
33
33
|
} as const;
|
|
34
34
|
|
|
@@ -99,11 +99,11 @@ export const borderWidth = {
|
|
|
99
99
|
// ============================================================================
|
|
100
100
|
|
|
101
101
|
export const shadows = {
|
|
102
|
-
sm: '0 1px
|
|
103
|
-
md: '0 4px
|
|
104
|
-
lg: '0 10px
|
|
105
|
-
xl: '0 20px
|
|
106
|
-
overlay: '0 25px 50px rgba(
|
|
102
|
+
sm: '0 1px 3px rgba(8, 6, 18, 0.12)',
|
|
103
|
+
md: '0 4px 8px rgba(8, 6, 18, 0.18)',
|
|
104
|
+
lg: '0 10px 20px rgba(8, 6, 18, 0.24)',
|
|
105
|
+
xl: '0 20px 30px rgba(8, 6, 18, 0.32)',
|
|
106
|
+
overlay: '0 25px 50px rgba(8, 6, 18, 0.5)',
|
|
107
107
|
} as const;
|
|
108
108
|
|
|
109
109
|
// ============================================================================
|