@blockrun/franklin 3.0.2 → 3.0.3
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/banner.js +3 -2
- package/package.json +1 -1
package/dist/banner.js
CHANGED
|
@@ -9,9 +9,10 @@ const FRANKLIN_ART = [
|
|
|
9
9
|
' ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═══╝',
|
|
10
10
|
];
|
|
11
11
|
// Franklin brand colors
|
|
12
|
-
//
|
|
12
|
+
// Metallic gold (#D4AF37) — traditional gold bar / royal insignia color
|
|
13
|
+
// Warmer and more premium than CSS gold (#FFD700); better on dark terminals
|
|
13
14
|
// Emerald is the secondary, reserved for franklin.bet (trading) product color
|
|
14
|
-
const GOLD = '#
|
|
15
|
+
const GOLD = '#D4AF37';
|
|
15
16
|
const EMERALD = '#10B981';
|
|
16
17
|
export function printBanner(version) {
|
|
17
18
|
// Pure gold FRANKLIN — single brand color, maximum signature strength
|
package/package.json
CHANGED