kaleido-ui 0.1.67 → 0.1.69

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.
@@ -1,23 +1,32 @@
1
1
  // src/tokens/colors.ts
2
2
  var lightSemanticColors = {
3
- background: "#ffffff",
4
- foreground: "#0a0a0a",
5
- card: "#ffffff",
6
- cardFg: "#0a0a0a",
7
- popover: "#ffffff",
8
- popoverFg: "#0a0a0a",
9
- primary: "#171717",
10
- primaryFg: "#fafafa",
11
- secondary: "#f5f5f5",
12
- secondaryFg: "#171717",
13
- muted: "#f5f5f5",
14
- mutedFg: "#737373",
15
- accent: "#f5f5f5",
16
- accentFg: "#171717",
3
+ background: "#EAECF8",
4
+ // surface-raised (light page body)
5
+ foreground: "#12131E",
6
+ // content-primary
7
+ card: "#FFFFFF",
8
+ // surface-overlay
9
+ cardFg: "#12131E",
10
+ popover: "#FFFFFF",
11
+ popoverFg: "#12131E",
12
+ primary: "#17B581",
13
+ // brand green (light)
14
+ primaryFg: "#FFFFFF",
15
+ secondary: "#E4E6F6",
16
+ // neutral surface (bg-secondary utility is brand violet via app token)
17
+ secondaryFg: "#12131E",
18
+ muted: "#F6F7FD",
19
+ // surface-elevated
20
+ mutedFg: "#464A69",
21
+ // content-secondary
22
+ accent: "#E4E6F6",
23
+ // surface-high
24
+ accentFg: "#12131E",
17
25
  destructive: "#e7000b",
18
- border: "#e5e5e5",
19
- input: "#e5e5e5",
20
- ring: "#a1a1a1",
26
+ border: "#C8CBE0",
27
+ // border-default
28
+ input: "#C8CBE0",
29
+ ring: "#17B581",
21
30
  chart1: "#2BEE79",
22
31
  chart2: "#F6C343",
23
32
  chart3: "#F7931A",
@@ -25,30 +34,37 @@ var lightSemanticColors = {
25
34
  chart5: "#DD352E"
26
35
  };
27
36
  var darkSemanticColors = {
28
- background: "#0A1326",
29
- foreground: "#ffffff",
37
+ background: "#12131C",
38
+ // surface-base (deepest)
39
+ foreground: "#E8E9F2",
40
+ // content-primary (cool white)
30
41
  border: "rgba(255, 255, 255, 0.10)",
31
42
  input: "rgba(255, 255, 255, 0.15)",
32
43
  destructive: "hsl(0 62% 50%)",
33
44
  secondary: "#16273F",
34
- secondaryFg: "#ffffff",
35
- muted: "#0F1C33",
45
+ // neutral surface (bg-secondary utility is brand violet via app token)
46
+ secondaryFg: "#E8E9F2",
47
+ muted: "#181924",
48
+ // surface-raised
36
49
  mutedFg: "rgba(255, 255, 255, 0.55)",
37
- primary: "#2BEE79",
38
- primaryFg: "#051B10",
39
- accent: "#16273F",
40
- accentFg: "#ffffff",
41
- ring: "#2BEE79",
42
- card: "#0F1C33",
43
- cardFg: "#ffffff",
44
- popover: "#16273F",
45
- popoverFg: "#ffffff",
50
+ primary: "#15E99A",
51
+ // brand green (dark)
52
+ primaryFg: "#12131C",
53
+ accent: "#323448",
54
+ // surface-elevated
55
+ accentFg: "#E8E9F2",
56
+ ring: "#15E99A",
57
+ card: "#242638",
58
+ // surface-overlay (card)
59
+ cardFg: "#E8E9F2",
60
+ popover: "#242638",
61
+ popoverFg: "#E8E9F2",
46
62
  chart1: "#2BEE79",
47
63
  chart2: "#F6C343",
48
64
  chart3: "#F7931A",
49
65
  chart4: "#7C3AED",
50
66
  chart5: "#DD352E",
51
- semanticBackground: "#0F1C33",
67
+ semanticBackground: "#242638",
52
68
  semanticBorder: "rgba(255, 255, 255, 0.10)"
53
69
  };
54
70
  var colors = {
@@ -136,6 +152,91 @@ var colors = {
136
152
  }
137
153
  };
138
154
 
155
+ // src/tokens/app-semantic.ts
156
+ var appSemanticDark = {
157
+ // Body is notably darker than cards — clear depth without full-black.
158
+ "surface-base": "18 19 28",
159
+ // #12131C — deepest bg, sidebar
160
+ "surface-raised": "24 25 36",
161
+ // #181924 — page body bg
162
+ "surface-overlay": "36 38 56",
163
+ // #242638 — card bg (~14 lighter than body)
164
+ "surface-elevated": "50 52 72",
165
+ // #323448 — sections inside cards
166
+ "surface-high": "66 68 90",
167
+ // #42445A — hover/active highlights
168
+ primary: "21 233 154",
169
+ // #15E99A
170
+ "primary-emphasis": "18 201 126",
171
+ // #12C97E
172
+ "primary-foreground": "18 19 28",
173
+ secondary: "139 92 246",
174
+ // #8B5CF6
175
+ "secondary-emphasis": "124 58 237",
176
+ "secondary-foreground": "255 255 255",
177
+ "content-primary": "232 233 242",
178
+ // #E8E9F2 — slightly cool white
179
+ "content-secondary": "142 146 172",
180
+ // #8E92AC
181
+ "content-tertiary": "88 92 116",
182
+ // #585C74
183
+ "content-inverse": "18 19 28",
184
+ "border-subtle": "40 42 60",
185
+ // #282A3C
186
+ "border-default": "54 56 76",
187
+ // #36384C
188
+ "border-strong": "21 233 154",
189
+ "status-success": "34 197 94",
190
+ "status-danger": "248 113 113",
191
+ "status-warning": "245 158 11",
192
+ "status-info": "56 189 248",
193
+ divider: "86 89 108"
194
+ // #56596C
195
+ };
196
+ var appSemanticLight = {
197
+ // Cards = white on a cool-gray page for clear depth.
198
+ "surface-base": "218 220 234",
199
+ // #DADCEA — sidebar/deep backgrounds
200
+ "surface-raised": "234 236 248",
201
+ // #EAECF8 — page body bg
202
+ "surface-overlay": "255 255 255",
203
+ // #FFFFFF — card bg (white)
204
+ "surface-elevated": "246 247 253",
205
+ // #F6F7FD — sections inside cards
206
+ "surface-high": "228 230 246",
207
+ // #E4E6F6 — hover/active highlights
208
+ primary: "23 181 129",
209
+ // #17B581
210
+ "primary-emphasis": "19 138 100",
211
+ // #138A64
212
+ "primary-foreground": "255 255 255",
213
+ secondary: "111 50 255",
214
+ // #6F32FF
215
+ "secondary-emphasis": "90 31 229",
216
+ // #5A1FE5
217
+ "secondary-foreground": "255 255 255",
218
+ "content-primary": "18 19 30",
219
+ // #12131E
220
+ "content-secondary": "70 74 105",
221
+ // #464A69
222
+ "content-tertiary": "118 122 152",
223
+ // #767A98
224
+ "content-inverse": "255 255 255",
225
+ "border-subtle": "218 220 238",
226
+ // #DADCEE
227
+ "border-default": "200 203 224",
228
+ // #C8CBE0
229
+ "border-strong": "23 181 129",
230
+ "status-success": "22 163 74",
231
+ "status-danger": "220 38 38",
232
+ "status-warning": "217 119 6",
233
+ "status-info": "2 132 199",
234
+ divider: "200 203 224"
235
+ // #C8CBE0
236
+ };
237
+ var appStatusSubtleAlpha = "0.15";
238
+ var appSemanticOrder = Object.keys(appSemanticDark);
239
+
139
240
  // src/tokens/typography.ts
140
241
  var fontFamily = {
141
242
  display: "'Satoshi', system-ui, -apple-system, sans-serif",
@@ -438,6 +539,10 @@ function makeTheme(mode) {
438
539
  }
439
540
  export {
440
541
  animation,
542
+ appSemanticDark,
543
+ appSemanticLight,
544
+ appSemanticOrder,
545
+ appStatusSubtleAlpha,
441
546
  colors,
442
547
  fontFamily,
443
548
  fontWeight,
@@ -120,6 +120,7 @@ __export(web_exports, {
120
120
  PaidOverlay: () => PaidOverlay,
121
121
  QrCode: () => QrCode,
122
122
  RecoveryPhraseCard: () => RecoveryPhraseCard,
123
+ RgbNetworkIcon: () => RgbNetworkIcon,
123
124
  ScrollArea: () => ScrollArea,
124
125
  SecretRevealCard: () => SecretRevealCard,
125
126
  SectionHeader: () => SectionHeader,
@@ -2133,6 +2134,9 @@ function ArkadeNetworkIcon({
2133
2134
  }
2134
2135
  );
2135
2136
  }
2137
+ function RgbNetworkIcon({ className = "size-3.5", alt = "RGB" }) {
2138
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("img", { src: protocolIcons["RGB20"], alt, className: cn("object-contain", className) });
2139
+ }
2136
2140
 
2137
2141
  // src/web/components/action-tile.tsx
2138
2142
  var import_jsx_runtime25 = require("react/jsx-runtime");
@@ -2862,7 +2866,7 @@ function getAccountNetworkUi(network) {
2862
2866
  }
2863
2867
  function AccountHeaderIcons({ accountId }) {
2864
2868
  if (accountId === "RGB") {
2865
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "flex size-10 items-center justify-center rounded-full bg-primary/15 shadow-inner", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("img", { src: "/icons/rgb/rgb-logo.svg", alt: "RGB", className: "size-5 object-contain" }) });
2869
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "flex size-10 items-center justify-center rounded-full bg-primary/15 shadow-inner", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(RgbNetworkIcon, { className: "size-5" }) });
2866
2870
  }
2867
2871
  if (accountId === "SPARK") {
2868
2872
  return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "flex size-10 items-center justify-center rounded-full bg-info/10 shadow-inner", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("img", { src: "/icons/spark/Asterisk/Spark Asterisk White.svg", alt: "Spark", className: "size-5 object-contain" }) });
@@ -7064,30 +7068,37 @@ var import_react15 = require("react");
7064
7068
 
7065
7069
  // src/tokens/colors.ts
7066
7070
  var darkSemanticColors = {
7067
- background: "#0A1326",
7068
- foreground: "#ffffff",
7071
+ background: "#12131C",
7072
+ // surface-base (deepest)
7073
+ foreground: "#E8E9F2",
7074
+ // content-primary (cool white)
7069
7075
  border: "rgba(255, 255, 255, 0.10)",
7070
7076
  input: "rgba(255, 255, 255, 0.15)",
7071
7077
  destructive: "hsl(0 62% 50%)",
7072
7078
  secondary: "#16273F",
7073
- secondaryFg: "#ffffff",
7074
- muted: "#0F1C33",
7079
+ // neutral surface (bg-secondary utility is brand violet via app token)
7080
+ secondaryFg: "#E8E9F2",
7081
+ muted: "#181924",
7082
+ // surface-raised
7075
7083
  mutedFg: "rgba(255, 255, 255, 0.55)",
7076
- primary: "#2BEE79",
7077
- primaryFg: "#051B10",
7078
- accent: "#16273F",
7079
- accentFg: "#ffffff",
7080
- ring: "#2BEE79",
7081
- card: "#0F1C33",
7082
- cardFg: "#ffffff",
7083
- popover: "#16273F",
7084
- popoverFg: "#ffffff",
7084
+ primary: "#15E99A",
7085
+ // brand green (dark)
7086
+ primaryFg: "#12131C",
7087
+ accent: "#323448",
7088
+ // surface-elevated
7089
+ accentFg: "#E8E9F2",
7090
+ ring: "#15E99A",
7091
+ card: "#242638",
7092
+ // surface-overlay (card)
7093
+ cardFg: "#E8E9F2",
7094
+ popover: "#242638",
7095
+ popoverFg: "#E8E9F2",
7085
7096
  chart1: "#2BEE79",
7086
7097
  chart2: "#F6C343",
7087
7098
  chart3: "#F7931A",
7088
7099
  chart4: "#7C3AED",
7089
7100
  chart5: "#DD352E",
7090
- semanticBackground: "#0F1C33",
7101
+ semanticBackground: "#242638",
7091
7102
  semanticBorder: "rgba(255, 255, 255, 0.10)"
7092
7103
  };
7093
7104
  var colors = {
@@ -8873,6 +8884,7 @@ function DepositInvoiceGeneration({
8873
8884
  PaidOverlay,
8874
8885
  QrCode,
8875
8886
  RecoveryPhraseCard,
8887
+ RgbNetworkIcon,
8876
8888
  ScrollArea,
8877
8889
  SecretRevealCard,
8878
8890
  SectionHeader,
@@ -312,6 +312,12 @@ interface NetworkIconProps {
312
312
  declare function LightningNetworkIcon({ className, alt, }: NetworkIconProps): react_jsx_runtime.JSX.Element;
313
313
  declare function SparkNetworkIcon({ className, alt }: NetworkIconProps): react_jsx_runtime.JSX.Element;
314
314
  declare function ArkadeNetworkIcon({ className, alt, }: NetworkIconProps): react_jsx_runtime.JSX.Element;
315
+ /**
316
+ * RGB logo. Unlike the other network icons (which reference host-app asset
317
+ * paths), this renders the RGB mark bundled with the library (protocolIcons),
318
+ * so consumers get the canonical logo without serving their own copy.
319
+ */
320
+ declare function RgbNetworkIcon({ className, alt }: NetworkIconProps): react_jsx_runtime.JSX.Element;
315
321
 
316
322
  interface ActionTileProps {
317
323
  icon: ReactNode;
@@ -1699,4 +1705,4 @@ declare function getFallbackAssetIconUrl(seed: string): string;
1699
1705
  */
1700
1706
  declare function useAssetIcon(ticker: string, cdnBaseUrl?: string): string;
1701
1707
 
1702
- export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, ActivityRow, type ActivityRowProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, type AmountDisplayOptions, type AmountDisplayUnit, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BottomSheet, type BottomSheetAction, type BottomSheetProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisclosureCard, type DisclosureCardProps, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, ExtensionPageFrame, type ExtensionPageFrameProps, FadeOverlay, type FadeOverlayProps, FilterChipGroup, type FilterChipGroupProps, type FilterChipOption, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconName, type IconProps, Icons, InfoPanel, type InfoPanelProps, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, ListSkeletonRows, type ListSkeletonRowsProps, LoadingCard, type LoadingCardProps, MethodChoiceChip, MetricCard, type MetricCardProps, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, ScrollArea, type ScrollAreaProps, SecretRevealCard, type SecretRevealCardProps, SectionHeader, type SectionHeaderProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SelectableCard, type SelectableCardProps, SettingItem, SettingsActionButton, SettingsSectionCard, type SettingsSectionCardProps, SettingsSelectorRow, type SettingsSelectorRowProps, SettingsStatusPanel, SettingsTile, type SettingsTileProps, Skeleton, type SkeletonProps, type SkeletonTone, SparkNetworkIcon, StatusBadge, type StatusType, StepperNumberInput, type StepperNumberInputProps, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToneBadge, type ToneBadgeProps, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
1708
+ export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, ActivityRow, type ActivityRowProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, type AmountDisplayOptions, type AmountDisplayUnit, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BottomSheet, type BottomSheetAction, type BottomSheetProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisclosureCard, type DisclosureCardProps, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, ExtensionPageFrame, type ExtensionPageFrameProps, FadeOverlay, type FadeOverlayProps, FilterChipGroup, type FilterChipGroupProps, type FilterChipOption, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconName, type IconProps, Icons, InfoPanel, type InfoPanelProps, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, ListSkeletonRows, type ListSkeletonRowsProps, LoadingCard, type LoadingCardProps, MethodChoiceChip, MetricCard, type MetricCardProps, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, RgbNetworkIcon, ScrollArea, type ScrollAreaProps, SecretRevealCard, type SecretRevealCardProps, SectionHeader, type SectionHeaderProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SelectableCard, type SelectableCardProps, SettingItem, SettingsActionButton, SettingsSectionCard, type SettingsSectionCardProps, SettingsSelectorRow, type SettingsSelectorRowProps, SettingsStatusPanel, SettingsTile, type SettingsTileProps, Skeleton, type SkeletonProps, type SkeletonTone, SparkNetworkIcon, StatusBadge, type StatusType, StepperNumberInput, type StepperNumberInputProps, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToneBadge, type ToneBadgeProps, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
@@ -312,6 +312,12 @@ interface NetworkIconProps {
312
312
  declare function LightningNetworkIcon({ className, alt, }: NetworkIconProps): react_jsx_runtime.JSX.Element;
313
313
  declare function SparkNetworkIcon({ className, alt }: NetworkIconProps): react_jsx_runtime.JSX.Element;
314
314
  declare function ArkadeNetworkIcon({ className, alt, }: NetworkIconProps): react_jsx_runtime.JSX.Element;
315
+ /**
316
+ * RGB logo. Unlike the other network icons (which reference host-app asset
317
+ * paths), this renders the RGB mark bundled with the library (protocolIcons),
318
+ * so consumers get the canonical logo without serving their own copy.
319
+ */
320
+ declare function RgbNetworkIcon({ className, alt }: NetworkIconProps): react_jsx_runtime.JSX.Element;
315
321
 
316
322
  interface ActionTileProps {
317
323
  icon: ReactNode;
@@ -1699,4 +1705,4 @@ declare function getFallbackAssetIconUrl(seed: string): string;
1699
1705
  */
1700
1706
  declare function useAssetIcon(ticker: string, cdnBaseUrl?: string): string;
1701
1707
 
1702
- export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, ActivityRow, type ActivityRowProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, type AmountDisplayOptions, type AmountDisplayUnit, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BottomSheet, type BottomSheetAction, type BottomSheetProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisclosureCard, type DisclosureCardProps, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, ExtensionPageFrame, type ExtensionPageFrameProps, FadeOverlay, type FadeOverlayProps, FilterChipGroup, type FilterChipGroupProps, type FilterChipOption, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconName, type IconProps, Icons, InfoPanel, type InfoPanelProps, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, ListSkeletonRows, type ListSkeletonRowsProps, LoadingCard, type LoadingCardProps, MethodChoiceChip, MetricCard, type MetricCardProps, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, ScrollArea, type ScrollAreaProps, SecretRevealCard, type SecretRevealCardProps, SectionHeader, type SectionHeaderProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SelectableCard, type SelectableCardProps, SettingItem, SettingsActionButton, SettingsSectionCard, type SettingsSectionCardProps, SettingsSelectorRow, type SettingsSelectorRowProps, SettingsStatusPanel, SettingsTile, type SettingsTileProps, Skeleton, type SkeletonProps, type SkeletonTone, SparkNetworkIcon, StatusBadge, type StatusType, StepperNumberInput, type StepperNumberInputProps, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToneBadge, type ToneBadgeProps, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
1708
+ export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, ActivityRow, type ActivityRowProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, type AmountDisplayOptions, type AmountDisplayUnit, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BottomSheet, type BottomSheetAction, type BottomSheetProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisclosureCard, type DisclosureCardProps, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, ExtensionPageFrame, type ExtensionPageFrameProps, FadeOverlay, type FadeOverlayProps, FilterChipGroup, type FilterChipGroupProps, type FilterChipOption, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconName, type IconProps, Icons, InfoPanel, type InfoPanelProps, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, ListSkeletonRows, type ListSkeletonRowsProps, LoadingCard, type LoadingCardProps, MethodChoiceChip, MetricCard, type MetricCardProps, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, RgbNetworkIcon, ScrollArea, type ScrollAreaProps, SecretRevealCard, type SecretRevealCardProps, SectionHeader, type SectionHeaderProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SelectableCard, type SelectableCardProps, SettingItem, SettingsActionButton, SettingsSectionCard, type SettingsSectionCardProps, SettingsSelectorRow, type SettingsSelectorRowProps, SettingsStatusPanel, SettingsTile, type SettingsTileProps, Skeleton, type SkeletonProps, type SkeletonTone, SparkNetworkIcon, StatusBadge, type StatusType, StepperNumberInput, type StepperNumberInputProps, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToneBadge, type ToneBadgeProps, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
package/dist/web/index.js CHANGED
@@ -1956,6 +1956,9 @@ function ArkadeNetworkIcon({
1956
1956
  }
1957
1957
  );
1958
1958
  }
1959
+ function RgbNetworkIcon({ className = "size-3.5", alt = "RGB" }) {
1960
+ return /* @__PURE__ */ jsx24("img", { src: protocolIcons["RGB20"], alt, className: cn("object-contain", className) });
1961
+ }
1959
1962
 
1960
1963
  // src/web/components/action-tile.tsx
1961
1964
  import { jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
@@ -2685,7 +2688,7 @@ function getAccountNetworkUi(network) {
2685
2688
  }
2686
2689
  function AccountHeaderIcons({ accountId }) {
2687
2690
  if (accountId === "RGB") {
2688
- return /* @__PURE__ */ jsx33("span", { className: "flex size-10 items-center justify-center rounded-full bg-primary/15 shadow-inner", children: /* @__PURE__ */ jsx33("img", { src: "/icons/rgb/rgb-logo.svg", alt: "RGB", className: "size-5 object-contain" }) });
2691
+ return /* @__PURE__ */ jsx33("span", { className: "flex size-10 items-center justify-center rounded-full bg-primary/15 shadow-inner", children: /* @__PURE__ */ jsx33(RgbNetworkIcon, { className: "size-5" }) });
2689
2692
  }
2690
2693
  if (accountId === "SPARK") {
2691
2694
  return /* @__PURE__ */ jsx33("span", { className: "flex size-10 items-center justify-center rounded-full bg-info/10 shadow-inner", children: /* @__PURE__ */ jsx33("img", { src: "/icons/spark/Asterisk/Spark Asterisk White.svg", alt: "Spark", className: "size-5 object-contain" }) });
@@ -6887,30 +6890,37 @@ import { useState as useState14 } from "react";
6887
6890
 
6888
6891
  // src/tokens/colors.ts
6889
6892
  var darkSemanticColors = {
6890
- background: "#0A1326",
6891
- foreground: "#ffffff",
6893
+ background: "#12131C",
6894
+ // surface-base (deepest)
6895
+ foreground: "#E8E9F2",
6896
+ // content-primary (cool white)
6892
6897
  border: "rgba(255, 255, 255, 0.10)",
6893
6898
  input: "rgba(255, 255, 255, 0.15)",
6894
6899
  destructive: "hsl(0 62% 50%)",
6895
6900
  secondary: "#16273F",
6896
- secondaryFg: "#ffffff",
6897
- muted: "#0F1C33",
6901
+ // neutral surface (bg-secondary utility is brand violet via app token)
6902
+ secondaryFg: "#E8E9F2",
6903
+ muted: "#181924",
6904
+ // surface-raised
6898
6905
  mutedFg: "rgba(255, 255, 255, 0.55)",
6899
- primary: "#2BEE79",
6900
- primaryFg: "#051B10",
6901
- accent: "#16273F",
6902
- accentFg: "#ffffff",
6903
- ring: "#2BEE79",
6904
- card: "#0F1C33",
6905
- cardFg: "#ffffff",
6906
- popover: "#16273F",
6907
- popoverFg: "#ffffff",
6906
+ primary: "#15E99A",
6907
+ // brand green (dark)
6908
+ primaryFg: "#12131C",
6909
+ accent: "#323448",
6910
+ // surface-elevated
6911
+ accentFg: "#E8E9F2",
6912
+ ring: "#15E99A",
6913
+ card: "#242638",
6914
+ // surface-overlay (card)
6915
+ cardFg: "#E8E9F2",
6916
+ popover: "#242638",
6917
+ popoverFg: "#E8E9F2",
6908
6918
  chart1: "#2BEE79",
6909
6919
  chart2: "#F6C343",
6910
6920
  chart3: "#F7931A",
6911
6921
  chart4: "#7C3AED",
6912
6922
  chart5: "#DD352E",
6913
- semanticBackground: "#0F1C33",
6923
+ semanticBackground: "#242638",
6914
6924
  semanticBorder: "rgba(255, 255, 255, 0.10)"
6915
6925
  };
6916
6926
  var colors = {
@@ -8695,6 +8705,7 @@ export {
8695
8705
  PaidOverlay,
8696
8706
  QrCode,
8697
8707
  RecoveryPhraseCard,
8708
+ RgbNetworkIcon,
8698
8709
  ScrollArea,
8699
8710
  SecretRevealCard,
8700
8711
  SectionHeader,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.67",
3
+ "version": "0.1.69",
4
4
  "description": "KaleidoSwap shared UI library — design tokens, web components (Tailwind + Radix), and React Native components extending WDK UI Kit",
5
5
  "license": "MIT",
6
6
  "type": "module",