@blockrun/franklin 3.6.23 → 3.6.24
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/dist/ui/app.js +3 -1
- package/package.json +1 -1
package/dist/ui/app.js
CHANGED
|
@@ -363,7 +363,9 @@ function RunCodeApp({ initialModel, workDir, walletAddress, walletBalance, chain
|
|
|
363
363
|
// Show user message in scrollback so the conversation is readable
|
|
364
364
|
setCommittedResponses(rs => [...rs, {
|
|
365
365
|
key: `user-${Date.now()}`,
|
|
366
|
-
|
|
366
|
+
// Gold matches the top of the Franklin banner gradient (#FFD700).
|
|
367
|
+
// Brand-consistent, readable on dark terminals, evokes $100-bill identity.
|
|
368
|
+
text: chalk.hex('#FFD700').bold('❯ ') + chalk.hex('#FFD700').bold(trimmed),
|
|
367
369
|
tokens: { input: 0, output: 0, calls: 0 },
|
|
368
370
|
cost: 0,
|
|
369
371
|
}]);
|
package/package.json
CHANGED