privateboard 0.1.0 → 0.1.2
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/cli.js +2060 -183
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/public/agent-overlay.js +3 -3
- package/public/agent-profile.css +5 -4
- package/public/agent-profile.js +18 -2
- package/public/app.js +513 -26
- package/public/avatar-skill.js +6 -9
- package/public/home.html +1750 -0
- package/public/{prototype-dashboard.html → index.html} +129 -116
- package/public/onboarding.js +4 -4
- package/public/quote-cta.css +225 -0
- package/public/quote-cta.js +355 -0
- package/public/report/spines/a16z-thesis.css +33 -1
- package/public/report/spines/anthropic-essay.css +54 -1
- package/public/report/spines/boardroom-dark.css +18 -2
- package/public/report/spines/gartner-note.css +47 -0
- package/public/report/spines/mckinsey-deck.css +38 -1
- package/public/report/spines/openai-paper.css +37 -1
- package/public/report.html +361 -6
- package/public/room-settings.css +6 -4
- package/public/room-settings.js +8 -5
- package/public/user-settings.css +18 -0
- package/public/user-settings.js +31 -2
package/public/avatar-skill.js
CHANGED
|
@@ -245,15 +245,12 @@
|
|
|
245
245
|
fillRect(grid, 43, 14, 1, 14, hair.outline);
|
|
246
246
|
fillRect(grid, 5, 28, 2, 3, hair.outline);
|
|
247
247
|
fillRect(grid, 41, 28, 2, 3, hair.outline);
|
|
248
|
-
// texture bumps
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
px(grid, 42, 19, hair.hl);
|
|
255
|
-
px(grid, 42, 22, hair.hl);
|
|
256
|
-
px(grid, 42, 24, hair.hl);
|
|
248
|
+
// Side texture bumps removed · for silver / white / blonde palettes
|
|
249
|
+
// these isolated single pixels (each at hair.hl) read as bright
|
|
250
|
+
// white speckles scattered around the head silhouette rather than
|
|
251
|
+
// the curl detail they were meant to suggest. The continuous
|
|
252
|
+
// .hl strip at (5, 14) / (41, 14) and the outline columns above
|
|
253
|
+
// already carry enough texture without the discrete dots.
|
|
257
254
|
}
|
|
258
255
|
|
|
259
256
|
function drawAfroHair(grid, hair) {
|