Skip to content

Commit 8d7e2cb

Browse files
authored
Merge pull request #31 from btravstack/fix/partof-mascot
fix(theme): waving mascot + BtravStack casing in the part-of strip
2 parents 0c4cf77 + 095f054 commit 8d7e2cb

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.changeset/partof-waving-mascot.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@btravstack/theme": patch
3+
---
4+
5+
The "Part of BtravStack" strip now shows the new waving character mascot and the BtravStack brand casing.

packages/theme/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "./style.css";
99
* an inline string (rendered via innerHTML) so the theme package ships no image
1010
* asset and works on every site regardless of its own logo.
1111
*/
12-
const BEET_MARK = `<svg viewBox="0 0 100 124" width="15" height="18" fill="none" aria-hidden="true"><g transform="translate(50,34)"><g transform="rotate(-35)"><path d="M0,3 C-6,-7 -6,-18 0,-28 C6,-18 6,-7 0,3 Z" fill="#2C8B4E"></path></g><g transform="rotate(35)"><path d="M0,3 C-6,-7 -6,-18 0,-28 C6,-18 6,-7 0,3 Z" fill="#2C8B4E"></path></g><path d="M0,4 C-7,-8 -7,-20 0,-32 C7,-20 7,-8 0,4 Z" fill="#3DAE62"></path></g><path d="M50,32 C29,30 17,44 17,60 C17,79 37,99 50,107 Z" fill="#CE3D80"></path><path d="M50,32 C71,30 83,44 83,60 C83,79 63,99 50,107 Z" fill="#8E1A52"></path><path d="M46.5,104 C46.5,112 44,118 39,124 C47,120 52.5,112 53.5,104 Z" fill="#8E1A52"></path></svg>`;
12+
const BEET_MARK = `<svg viewBox="-2 -12 104 148" width="15" height="21" fill="none" aria-hidden="true"><g transform="rotate(-6 50 68)"><path d="M46,34 C44,26 44,18 47,10" stroke="#2C8B4E" stroke-width="3.6" stroke-linecap="round" fill="none"></path><path d="M47,10 C40,7 37,-2 43,-6 C50,-10 56,-3 54,3 C53,7 51,9 47,10 Z" fill="#3DAE62"></path><path d="M41,36 C34,31 26,30 21,34 C16,38 19,45 26,45 C32,45 38,41 41,36 Z" fill="#2C8B4E"></path><path d="M57,34 C62,27 70,24 76,28 C81,32 78,39 71,40 C65,40 60,37 57,34 Z" fill="#3DAE62"></path><g transform="rotate(-38 16 66)"><rect x="4" y="62" width="20" height="9" rx="4.5" fill="#CE3D80"></rect></g><g transform="rotate(24 84 78)"><rect x="76" y="74" width="18" height="9" rx="4.5" fill="#8E1A52"></rect></g><path d="M50,32 C28,31 14,45 14,62 C14,81 30,98 44,108 C47,111 48,114 50,116 C52,114 53,111 56,108 C70,98 86,81 86,62 C86,45 72,31 50,32 Z" fill="#CE3D80"></path><path d="M63,35 C76,41 86,50 86,62 C86,79 73,94 58,106 C69,91 78,76 78,62 C78,51 72,42 63,35 Z" fill="#8E1A52" opacity="0.85"></path><circle cx="38" cy="60" r="5.2" fill="#3A0D24"></circle><circle cx="39.7" cy="58.3" r="1.8" fill="#FFFFFF"></circle><circle cx="63" cy="60" r="5.2" fill="#3A0D24"></circle><circle cx="64.7" cy="58.3" r="1.8" fill="#FFFFFF"></circle><path d="M41,71 Q50.5,80 60,71" stroke="#3A0D24" stroke-width="3.4" stroke-linecap="round" fill="none"></path><circle cx="29" cy="69" r="4.2" fill="#EE9CC4" opacity="0.75"></circle><circle cx="72" cy="69" r="4.2" fill="#EE9CC4" opacity="0.75"></circle><path d="M50,116 C49,121 52,124 49,129 C47,132 44,132 43,130" stroke="#8E1A52" stroke-width="2.8" stroke-linecap="round" fill="none"></path></g></svg>`;
1313

1414
/** "Part of 🫜 btravstack" org-attribution strip, shown at the bottom of every page. */
1515
const PartOfBtravstack = () =>
@@ -21,8 +21,8 @@ const PartOfBtravstack = () =>
2121
h("span", { class: "btv-partof-label" }, "Part of"),
2222
h("span", { class: "btv-partof-mark", innerHTML: BEET_MARK }),
2323
h("span", { class: "btv-partof-word" }, [
24-
h("span", { class: "btv-partof-pink" }, "btrav"),
25-
"stack",
24+
h("span", { class: "btv-partof-pink" }, "Btrav"),
25+
"Stack",
2626
]),
2727
],
2828
),

0 commit comments

Comments
 (0)