@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandujs/core",
3
- "version": "0.18.11",
3
+ "version": "0.18.12",
4
4
  "description": "Mandu Framework Core - Spec, Generator, Guard, Runtime",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -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(0, 0, 0, 0.4), 0 0 0 4px ${stateColor}33`
222
- : `0 4px 12px rgba(0, 0, 0, 0.3)`,
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: '#90EE90',
18
- warning: '#FFD700',
19
- error: '#FF6B6B',
20
- info: '#87CEEB',
17
+ success: '#7EC8A0', // 세이지 그린 (따뜻한 톤)
18
+ warning: '#E8B84D', // 앰버 (부드러운 경고)
19
+ error: '#E86464', // 소프트 레드
20
+ info: '#7AAFC8', // 스틸 블루 (차분한 정보)
21
21
  },
22
22
  background: {
23
- dark: '#1A1A2E',
24
- medium: '#2D2D44',
25
- light: '#3D3D5C',
26
- overlay: 'rgba(0, 0, 0, 0.85)',
23
+ dark: '#1C1B2E', // 따뜻한 다크 인디고
24
+ medium: '#2A2940', // 따뜻한 미디엄
25
+ light: '#3A3854', // 따뜻한 라이트
26
+ overlay: 'rgba(10, 8, 20, 0.88)',
27
27
  },
28
28
  text: {
29
- primary: '#FFFFFF',
30
- secondary: '#B0B0B0',
31
- muted: '#707070',
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 2px rgba(0, 0, 0, 0.1)',
103
- md: '0 4px 6px rgba(0, 0, 0, 0.15)',
104
- lg: '0 10px 15px rgba(0, 0, 0, 0.2)',
105
- xl: '0 20px 25px rgba(0, 0, 0, 0.25)',
106
- overlay: '0 25px 50px rgba(0, 0, 0, 0.5)',
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
  // ============================================================================