@hubpav/hwio-brand 0.1.0

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.
Files changed (39) hide show
  1. package/README.md +7 -0
  2. package/dist/docusaurus.css +29 -0
  3. package/dist/fonts/inter-latin-ext.woff2 +0 -0
  4. package/dist/fonts/inter-latin.woff2 +0 -0
  5. package/dist/fonts/inter.css +25 -0
  6. package/dist/fonts/poppins-400-latin-ext.woff2 +0 -0
  7. package/dist/fonts/poppins-400-latin.woff2 +0 -0
  8. package/dist/fonts/poppins-600-latin-ext.woff2 +0 -0
  9. package/dist/fonts/poppins-600-latin.woff2 +0 -0
  10. package/dist/fonts/poppins-700-latin-ext.woff2 +0 -0
  11. package/dist/fonts/poppins-700-latin.woff2 +0 -0
  12. package/dist/fonts/poppins.css +54 -0
  13. package/dist/sites-data.js +5 -0
  14. package/dist/sites.d.ts +21 -0
  15. package/dist/sites.js +43 -0
  16. package/dist/tokens.json +594 -0
  17. package/dist/vars.css +167 -0
  18. package/fonts/inter-latin-ext.woff2 +0 -0
  19. package/fonts/inter-latin.woff2 +0 -0
  20. package/fonts/poppins-400-latin-ext.woff2 +0 -0
  21. package/fonts/poppins-400-latin.woff2 +0 -0
  22. package/fonts/poppins-600-latin-ext.woff2 +0 -0
  23. package/fonts/poppins-600-latin.woff2 +0 -0
  24. package/fonts/poppins-700-latin-ext.woff2 +0 -0
  25. package/fonts/poppins-700-latin.woff2 +0 -0
  26. package/logos/apple-touch-icon.png +0 -0
  27. package/logos/favicon-32x32.png +0 -0
  28. package/logos/favicon.ico +0 -0
  29. package/logos/favicon.svg +1 -0
  30. package/logos/hardwario-logo-dark.svg +1 -0
  31. package/logos/hardwario-logo-icon.svg +1 -0
  32. package/logos/hardwario-logo.svg +1 -0
  33. package/logos/hardwario-mark-pos.svg +1 -0
  34. package/logos/hardwario-mark-white.svg +60 -0
  35. package/logos/hardwario-mark.svg +60 -0
  36. package/package.json +37 -0
  37. package/src/brand.json +497 -0
  38. package/src/sites.d.ts +21 -0
  39. package/src/sites.js +43 -0
package/dist/vars.css ADDED
@@ -0,0 +1,167 @@
1
+ /* Generated from brand.json by @hubpav/hwio-brand. Plain --hwio-* custom properties per theme. */
2
+ :root, [data-theme="hwio"] {
3
+ color-scheme: light;
4
+ --hwio-color-base-100: #ffffff;
5
+ --hwio-color-base-200: #F1FAFF;
6
+ --hwio-color-base-300: #e5e7eb;
7
+ --hwio-color-base-content: #252532;
8
+ --hwio-color-primary: #06367a;
9
+ --hwio-color-primary-content: #ffffff;
10
+ --hwio-color-secondary: #016ad4;
11
+ --hwio-color-secondary-content: #ffffff;
12
+ --hwio-color-accent: #e30427;
13
+ --hwio-color-accent-content: #ffffff;
14
+ --hwio-color-neutral: #252532;
15
+ --hwio-color-neutral-content: #f3f4f6;
16
+ --hwio-color-info: #009cfa;
17
+ --hwio-color-info-content: #06367a;
18
+ --hwio-color-success: #15803d;
19
+ --hwio-color-success-content: #ffffff;
20
+ --hwio-color-warning: #b45309;
21
+ --hwio-color-warning-content: #ffffff;
22
+ --hwio-color-error: #dc2626;
23
+ --hwio-color-error-content: #ffffff;
24
+ --hwio-radius-selector: 2rem;
25
+ --hwio-radius-field: 0.5rem;
26
+ --hwio-radius-box: 1rem;
27
+ --hwio-size-selector: 0.25rem;
28
+ --hwio-size-field: 0.3rem;
29
+ --hwio-border: 1px;
30
+ --hwio-depth: 0;
31
+ --hwio-noise: 0;
32
+ --hwio-font-sans: 'Inter', 'Inter Fallback', ui-sans-serif, system-ui, sans-serif;
33
+ --hwio-kicker-on-neutral: #f43f5e;
34
+ }
35
+ [data-theme="hwio-dark"] {
36
+ color-scheme: dark;
37
+ --hwio-color-base-100: #0f0f14;
38
+ --hwio-color-base-200: #1a1a22;
39
+ --hwio-color-base-300: #23232f;
40
+ --hwio-color-base-content: #e7e7ee;
41
+ --hwio-color-primary: #06367a;
42
+ --hwio-color-primary-content: #ffffff;
43
+ --hwio-color-secondary: #016ad4;
44
+ --hwio-color-secondary-content: #ffffff;
45
+ --hwio-color-accent: #f43f5e;
46
+ --hwio-color-accent-content: #0f0f14;
47
+ --hwio-color-neutral: #23232f;
48
+ --hwio-color-neutral-content: #e7e7ee;
49
+ --hwio-color-info: #009cfa;
50
+ --hwio-color-info-content: #06367a;
51
+ --hwio-color-success: #15803d;
52
+ --hwio-color-success-content: #ffffff;
53
+ --hwio-color-warning: #b45309;
54
+ --hwio-color-warning-content: #ffffff;
55
+ --hwio-color-error: #dc2626;
56
+ --hwio-color-error-content: #ffffff;
57
+ --hwio-radius-selector: 2rem;
58
+ --hwio-radius-field: 0.5rem;
59
+ --hwio-radius-box: 1rem;
60
+ --hwio-size-selector: 0.25rem;
61
+ --hwio-size-field: 0.3rem;
62
+ --hwio-border: 1px;
63
+ --hwio-depth: 0;
64
+ --hwio-noise: 0;
65
+ --hwio-font-sans: 'Inter', 'Inter Fallback', ui-sans-serif, system-ui, sans-serif;
66
+ --hwio-kicker-on-neutral: #f43f5e;
67
+ }
68
+ [data-theme="hwio-forestry"] {
69
+ color-scheme: light;
70
+ --hwio-color-base-100: #ffffff;
71
+ --hwio-color-base-200: #F1FAFF;
72
+ --hwio-color-base-300: #e5e7eb;
73
+ --hwio-color-base-content: #252532;
74
+ --hwio-color-primary: #2B7036;
75
+ --hwio-color-primary-content: #ffffff;
76
+ --hwio-color-secondary: #016ad4;
77
+ --hwio-color-secondary-content: #ffffff;
78
+ --hwio-color-accent: #2B7036;
79
+ --hwio-color-accent-content: #ffffff;
80
+ --hwio-color-neutral: #252532;
81
+ --hwio-color-neutral-content: #f3f4f6;
82
+ --hwio-color-info: #009cfa;
83
+ --hwio-color-info-content: #06367a;
84
+ --hwio-color-success: #15803d;
85
+ --hwio-color-success-content: #ffffff;
86
+ --hwio-color-warning: #b45309;
87
+ --hwio-color-warning-content: #ffffff;
88
+ --hwio-color-error: #dc2626;
89
+ --hwio-color-error-content: #ffffff;
90
+ --hwio-radius-selector: 2rem;
91
+ --hwio-radius-field: 0.5rem;
92
+ --hwio-radius-box: 1rem;
93
+ --hwio-size-selector: 0.25rem;
94
+ --hwio-size-field: 0.3rem;
95
+ --hwio-border: 1px;
96
+ --hwio-depth: 0;
97
+ --hwio-noise: 0;
98
+ --hwio-font-sans: 'Inter', 'Inter Fallback', ui-sans-serif, system-ui, sans-serif;
99
+ --hwio-kicker-on-neutral: #f43f5e;
100
+ }
101
+ [data-theme="hwio-forestry-dark"] {
102
+ color-scheme: dark;
103
+ --hwio-color-base-100: #0f0f14;
104
+ --hwio-color-base-200: #1a1a22;
105
+ --hwio-color-base-300: #23232f;
106
+ --hwio-color-base-content: #e7e7ee;
107
+ --hwio-color-primary: #2B7036;
108
+ --hwio-color-primary-content: #ffffff;
109
+ --hwio-color-secondary: #016ad4;
110
+ --hwio-color-secondary-content: #ffffff;
111
+ --hwio-color-accent: #5aa864;
112
+ --hwio-color-accent-content: #0f0f14;
113
+ --hwio-color-neutral: #23232f;
114
+ --hwio-color-neutral-content: #e7e7ee;
115
+ --hwio-color-info: #009cfa;
116
+ --hwio-color-info-content: #06367a;
117
+ --hwio-color-success: #15803d;
118
+ --hwio-color-success-content: #ffffff;
119
+ --hwio-color-warning: #b45309;
120
+ --hwio-color-warning-content: #ffffff;
121
+ --hwio-color-error: #dc2626;
122
+ --hwio-color-error-content: #ffffff;
123
+ --hwio-radius-selector: 2rem;
124
+ --hwio-radius-field: 0.5rem;
125
+ --hwio-radius-box: 1rem;
126
+ --hwio-size-selector: 0.25rem;
127
+ --hwio-size-field: 0.3rem;
128
+ --hwio-border: 1px;
129
+ --hwio-depth: 0;
130
+ --hwio-noise: 0;
131
+ --hwio-font-sans: 'Inter', 'Inter Fallback', ui-sans-serif, system-ui, sans-serif;
132
+ --hwio-kicker-on-neutral: #f43f5e;
133
+ }
134
+ [data-theme="er3o"] {
135
+ color-scheme: light;
136
+ --hwio-color-base-100: #ffffff;
137
+ --hwio-color-base-200: #f9fafb;
138
+ --hwio-color-base-300: #f3f4f6;
139
+ --hwio-color-base-content: #333333;
140
+ --hwio-color-primary: #14A0C0;
141
+ --hwio-color-primary-content: #ffffff;
142
+ --hwio-color-secondary: #01CC9B;
143
+ --hwio-color-secondary-content: #061920;
144
+ --hwio-color-accent: #0C6678;
145
+ --hwio-color-accent-content: #ffffff;
146
+ --hwio-color-neutral: #252532;
147
+ --hwio-color-neutral-content: #ffffff;
148
+ --hwio-color-info: #19768B;
149
+ --hwio-color-info-content: #ffffff;
150
+ --hwio-color-success: #15803d;
151
+ --hwio-color-success-content: #ffffff;
152
+ --hwio-color-warning: #b45309;
153
+ --hwio-color-warning-content: #ffffff;
154
+ --hwio-color-error: #dc2626;
155
+ --hwio-color-error-content: #ffffff;
156
+ --hwio-radius-selector: 2rem;
157
+ --hwio-radius-field: 2rem;
158
+ --hwio-radius-box: 1.5rem;
159
+ --hwio-size-selector: 0.25rem;
160
+ --hwio-size-field: 0.3rem;
161
+ --hwio-border: 1px;
162
+ --hwio-depth: 0;
163
+ --hwio-noise: 0;
164
+ --hwio-font-sans: 'Poppins', 'Poppins Fallback', ui-sans-serif, system-ui, sans-serif;
165
+ --er3o-gradient-from: #01CC9B;
166
+ --er3o-gradient-to: #14A0C0;
167
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="120" height="120" rx="16" fill="#fff"/><g transform="translate(30 22.5) scale(0.75)"><defs><style>.cls-1{fill:#e30427;}.cls-2{fill:#6b6a6a;}</style></defs><path class="cls-1" d="m9,0C4.03,0,0,4.03,0,9h0c0,3.81,2.41,7.19,6,8.46v22.54c0,1.66,1.34,3,3,3,.31,0,.62-.05.92-.15l22.95-7.4c1.7,2.23,4.33,3.54,7.13,3.55,4.97,0,9-4.03,9-9h0c0-4.97-4.03-9-9-9-4.87,0-8.84,3.88-8.98,8.74l-19.02,6.13v-18.42c3.59-1.27,5.99-4.66,6-8.46C18,4.03,13.97,0,9,0h0s0,0,0,0Z"/><path class="cls-1" d="m71,100c4.97,0,9-4.03,9-9h0c0-3.81-2.41-7.19-6-8.46v-22.54c0-1.66-1.34-3-3-3-.31,0-.62.05-.92.15l-22.95,7.4c-1.7-2.23-4.33-3.54-7.13-3.55-4.97,0-9,4.03-9,9h0c0,4.97,4.03,9,9,9h0c4.87,0,8.84-3.88,8.98-8.74l19.02-6.13v18.42c-3.59,1.27-5.99,4.66-6,8.46,0,4.97,4.03,9,9,9h0Z"/><path class="cls-2" d="m71,0c-4.97,0-9,4.03-9,9h0c0,3.81,2.41,7.21,6,8.48v20.34L8.08,57.14c-1.24.4-2.08,1.56-2.07,2.86v22.52C2.41,83.79,0,87.19,0,91c0,4.97,4.03,9,9,9h0c4.97,0,9-4.03,9-9h0c0-3.81-2.4-7.21-6-8.48v-20.33l59.92-19.33c1.24-.4,2.08-1.55,2.08-2.85v-22.52c3.59-1.27,5.99-4.67,6-8.48C80,4.03,75.97,0,71,0h0s0,0,0,0Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_2" viewBox="0 0 274.79 60"><defs><style>.cls-1{fill:#f43f5e}</style></defs><g id="Layer_1-2"><path d="M5.4 0C2.42 0 0 2.42 0 5.4c0 2.28 1.45 4.32 3.6 5.08V24c0 .99.81 1.8 1.8 1.8.19 0 .37-.03.55-.09l13.77-4.44A5.41 5.41 0 0 0 24 23.4c2.98 0 5.4-2.42 5.4-5.4s-2.42-5.4-5.4-5.4c-2.92 0-5.31 2.33-5.39 5.25L7.2 21.53V10.48a5.405 5.405 0 0 0 3.6-5.08C10.8 2.42 8.38 0 5.4 0m37.2 60c2.98 0 5.4-2.42 5.4-5.4 0-2.28-1.45-4.32-3.6-5.08V36c0-.99-.81-1.8-1.8-1.8-.19 0-.37.03-.55.09l-13.77 4.44A5.41 5.41 0 0 0 24 36.6c-2.98 0-5.4 2.42-5.4 5.4s2.42 5.4 5.4 5.4c2.92 0 5.31-2.33 5.39-5.25l11.41-3.68v11.05a5.405 5.405 0 0 0-3.6 5.08c0 2.98 2.42 5.4 5.4 5.4" class="cls-1"/><path d="M42.6 0c-2.98 0-5.4 2.42-5.4 5.4 0 2.29 1.44 4.33 3.6 5.09v12.2L4.85 34.29c-.74.24-1.25.93-1.24 1.71v13.51C1.44 50.27 0 52.31 0 54.6 0 57.58 2.42 60 5.4 60s5.4-2.42 5.4-5.4c0-2.29-1.44-4.33-3.6-5.09v-12.2l35.95-11.6c.74-.24 1.25-.93 1.25-1.71V10.48c2.15-.76 3.6-2.8 3.6-5.09C48 2.42 45.58 0 42.6 0" style="fill:#d1d5db"/><path d="M65.52 39.17c-.35-.32-.52-.72-.52-1.21V22.45c0-.51.17-.92.52-1.23s.82-.46 1.42-.46c.47 0 .87.16 1.19.48s.48.72.48 1.21v5.95h8.9v-5.95c0-.47.18-.87.55-1.2s.8-.49 1.31-.49q.705 0 1.2.48c.495.48.49.72.49 1.21v15.51c0 .47-.16.87-.49 1.2s-.73.49-1.2.49-.92-.16-1.3-.49c-.37-.33-.56-.73-.56-1.2v-5.98h-8.9v5.98q0 .705-.48 1.2c-.32.33-.71.49-1.19.49-.6 0-1.07-.16-1.42-.48m24.24.53c-.29 0-.51-.02-.66-.05-.33-.18-.59-.42-.79-.72s-.3-.63-.3-1c0-.31.07-.61.22-.9l7.84-15.32a2 2 0 0 1 .74-.83c.31-.19.64-.29.98-.29s.67.1.97.29.53.47.7.83l7.7 15.32c.15.27.22.56.22.87 0 .51-.2.94-.59 1.28-.39.35-.83.52-1.32.52-.31 0-.59-.08-.85-.25-.26-.16-.46-.41-.63-.74l-1.2-2.4H92.72l-1.17 2.4c-.31.66-.9.98-1.77.98Zm8-13.73-3.36 6.74h6.44l-3.09-6.74Zm19.59 13.24c-.37.33-.81.49-1.3.49s-.91-.15-1.26-.46-.52-.75-.52-1.31V22.42c0-.47.16-.87.48-1.19s.71-.48 1.16-.48h7.26c1.27 0 2.38.29 3.32.87a5.7 5.7 0 0 1 2.13 2.29q.72 1.425.72 3c0 1.18-.31 2.27-.91 3.25-.61.98-1.51 1.71-2.69 2.18l3.63 4.42c.25.38.38.77.38 1.17 0 .49-.18.91-.53 1.24-.35.34-.78.51-1.27.51-.64 0-1.18-.29-1.64-.87l-4.12-5.9h-4.29v4.94c0 .56-.19 1.01-.56 1.34Zm5.83-9.42c.86 0 1.53-.29 2.02-.87s.74-1.27.74-2.05-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.27v5.73h5.27Zm14.76 9.43c-.37-.28-.56-.71-.56-1.27V22.44c0-.47.2-.87.59-1.2s.82-.49 1.3-.49h6.25c1.98 0 3.68.45 5.08 1.34s2.45 2.06 3.15 3.49c.7 1.44 1.05 2.98 1.05 4.61s-.35 3.18-1.04 4.61c-.69 1.44-1.72 2.6-3.09 3.49s-3 1.34-4.91 1.34h-6.5q-.765 0-1.32-.42Zm3.04-2.91h4.53c1.18 0 2.2-.3 3.06-.89s1.5-1.36 1.94-2.31q.66-1.425.66-3.03c0-1.605-.21-2.02-.64-2.93a5.4 5.4 0 0 0-1.92-2.23c-.86-.56-1.88-.85-3.09-.85h-4.53V36.3Zm40.74-3.19 4.07-11.25c.16-.4.39-.71.68-.91.29-.21.62-.31.98-.31.47 0 .89.16 1.24.48s.53.72.53 1.21c0 .22-.05.46-.14.74l-5.41 14.66c-.24.76-.49 1.29-.76 1.58s-.65.44-1.12.44c-.44 0-.77-.11-1-.34s-.5-.64-.83-1.24l-4.75-10.78-4.53 10.62c-.27.62-.55 1.07-.83 1.37-.28.29-.65.44-1.11.44s-.82-.15-1.11-.45q-.42-.45-.78-1.41l-5.3-14.88a2.3 2.3 0 0 1-.14-.71c0-.53.18-.95.55-1.26a1.9 1.9 0 0 1 1.28-.46c.36 0 .7.1 1.01.31s.53.51.66.91l4.04 11.25 4.83-11.25c.16-.4.39-.71.67-.94s.58-.34.89-.34.6.1.87.3q.405.3.66.9l4.83 11.33Zm13.59 6.58c-.29 0-.51-.02-.66-.05-.33-.18-.59-.42-.79-.72s-.3-.63-.3-1c0-.31.07-.61.22-.9l7.84-15.32a2 2 0 0 1 .74-.83c.31-.19.64-.29.98-.29s.67.1.97.29.53.47.7.83l7.7 15.32c.15.27.22.56.22.87 0 .51-.2.94-.59 1.28-.39.35-.83.52-1.32.52-.31 0-.59-.08-.85-.25-.26-.16-.46-.41-.63-.74l-1.2-2.4h-10.07l-1.17 2.4c-.31.66-.9.98-1.77.98Zm8-13.73-3.36 6.74h6.44l-3.09-6.74Zm19.59 13.24c-.37.33-.81.49-1.3.49s-.91-.15-1.26-.46-.52-.75-.52-1.31V22.42c0-.47.16-.87.48-1.19s.71-.48 1.16-.48h7.26c1.27 0 2.38.29 3.32.87a5.7 5.7 0 0 1 2.13 2.29q.72 1.425.72 3c0 1.18-.31 2.27-.91 3.25-.61.98-1.51 1.71-2.69 2.18l3.63 4.42c.25.38.38.77.38 1.17 0 .49-.18.91-.53 1.24-.35.34-.78.51-1.27.51-.64 0-1.18-.29-1.64-.87l-4.12-5.9h-4.29v4.94c0 .56-.19 1.01-.56 1.34Zm5.83-9.42c.86 0 1.53-.29 2.02-.87s.74-1.27.74-2.05-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.27v5.73h5.27Zm14.39-7.4c0-.53.18-.95.55-1.26.36-.31.79-.46 1.28-.46s.91.15 1.26.45.52.72.52 1.27v15.59c0 .55-.18.97-.53 1.27s-.79.45-1.3.45c-.47 0-.89-.15-1.24-.45s-.53-.72-.53-1.27V22.39Zm30.26 13.01c-.94 1.48-2.15 2.61-3.64 3.37a10.3 10.3 0 0 1-4.72 1.15c-1.75.07-3.41-.26-4.98-1s-2.85-1.86-3.84-3.37q-1.47-2.265-1.47-5.46c0-3.195.49-3.95 1.47-5.46s2.26-2.65 3.84-3.41c1.57-.76 3.24-1.15 4.98-1.15 1.67.09 3.26.53 4.75 1.31s2.7 1.92 3.63 3.4 1.39 3.25 1.39 5.31-.47 3.83-1.41 5.31m-3.11-8.83c-.63-.98-1.44-1.72-2.43-2.21s-2.03-.74-3.13-.74-2.08.25-3.06.74-1.78 1.23-2.4 2.21-.93 2.16-.93 3.52.31 2.53.93 3.51c.62.97 1.42 1.71 2.4 2.21q1.47.75 3.06.75c1.59 0 2.13-.25 3.13-.75.99-.5 1.8-1.24 2.43-2.21s.94-2.14.94-3.51-.31-2.54-.94-3.52" class="cls-1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 60"><path d="M5.4 0C2.42 0 0 2.42 0 5.4c0 2.28 1.45 4.32 3.6 5.08V24c0 .99.81 1.8 1.8 1.8.19 0 .37-.03.55-.09l13.77-4.44A5.41 5.41 0 0 0 24 23.4c2.98 0 5.4-2.42 5.4-5.4s-2.42-5.4-5.4-5.4c-2.92 0-5.31 2.33-5.39 5.25L7.2 21.53V10.48a5.405 5.405 0 0 0 3.6-5.08C10.8 2.42 8.38 0 5.4 0m37.2 60c2.98 0 5.4-2.42 5.4-5.4 0-2.28-1.45-4.32-3.6-5.08V36c0-.99-.81-1.8-1.8-1.8-.19 0-.37.03-.55.09l-13.77 4.44A5.41 5.41 0 0 0 24 36.6c-2.98 0-5.4 2.42-5.4 5.4s2.42 5.4 5.4 5.4c2.92 0 5.31-2.33 5.39-5.25l11.41-3.68v11.05a5.405 5.405 0 0 0-3.6 5.08c0 2.98 2.42 5.4 5.4 5.4" fill="#e30427"/><path d="M42.6 0c-2.98 0-5.4 2.42-5.4 5.4 0 2.29 1.44 4.33 3.6 5.09v12.2L4.85 34.29c-.74.24-1.25.93-1.24 1.71v13.51C1.44 50.27 0 52.31 0 54.6 0 57.58 2.42 60 5.4 60s5.4-2.42 5.4-5.4c0-2.29-1.44-4.33-3.6-5.09v-12.2l35.95-11.6c.74-.24 1.25-.93 1.25-1.71V10.48c2.15-.76 3.6-2.8 3.6-5.09C48 2.42 45.58 0 42.6 0" fill="#6b6a6a"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="Layer_2" viewBox="0 0 274.79 60"><defs><style>.cls-1{fill:#e30427}</style></defs><g id="Layer_1-2"><path d="M5.4 0C2.42 0 0 2.42 0 5.4c0 2.28 1.45 4.32 3.6 5.08V24c0 .99.81 1.8 1.8 1.8.19 0 .37-.03.55-.09l13.77-4.44A5.41 5.41 0 0 0 24 23.4c2.98 0 5.4-2.42 5.4-5.4s-2.42-5.4-5.4-5.4c-2.92 0-5.31 2.33-5.39 5.25L7.2 21.53V10.48a5.405 5.405 0 0 0 3.6-5.08C10.8 2.42 8.38 0 5.4 0m37.2 60c2.98 0 5.4-2.42 5.4-5.4 0-2.28-1.45-4.32-3.6-5.08V36c0-.99-.81-1.8-1.8-1.8-.19 0-.37.03-.55.09l-13.77 4.44A5.41 5.41 0 0 0 24 36.6c-2.98 0-5.4 2.42-5.4 5.4s2.42 5.4 5.4 5.4c2.92 0 5.31-2.33 5.39-5.25l11.41-3.68v11.05a5.405 5.405 0 0 0-3.6 5.08c0 2.98 2.42 5.4 5.4 5.4" class="cls-1"/><path d="M42.6 0c-2.98 0-5.4 2.42-5.4 5.4 0 2.29 1.44 4.33 3.6 5.09v12.2L4.85 34.29c-.74.24-1.25.93-1.24 1.71v13.51C1.44 50.27 0 52.31 0 54.6 0 57.58 2.42 60 5.4 60s5.4-2.42 5.4-5.4c0-2.29-1.44-4.33-3.6-5.09v-12.2l35.95-11.6c.74-.24 1.25-.93 1.25-1.71V10.48c2.15-.76 3.6-2.8 3.6-5.09C48 2.42 45.58 0 42.6 0" style="fill:#6b6a6a"/><path d="M65.52 39.17c-.35-.32-.52-.72-.52-1.21V22.45c0-.51.17-.92.52-1.23s.82-.46 1.42-.46c.47 0 .87.16 1.19.48s.48.72.48 1.21v5.95h8.9v-5.95c0-.47.18-.87.55-1.2s.8-.49 1.31-.49q.705 0 1.2.48c.495.48.49.72.49 1.21v15.51c0 .47-.16.87-.49 1.2s-.73.49-1.2.49-.92-.16-1.3-.49c-.37-.33-.56-.73-.56-1.2v-5.98h-8.9v5.98q0 .705-.48 1.2c-.32.33-.71.49-1.19.49-.6 0-1.07-.16-1.42-.48m24.24.53c-.29 0-.51-.02-.66-.05-.33-.18-.59-.42-.79-.72s-.3-.63-.3-1c0-.31.07-.61.22-.9l7.84-15.32a2 2 0 0 1 .74-.83c.31-.19.64-.29.98-.29s.67.1.97.29.53.47.7.83l7.7 15.32c.15.27.22.56.22.87 0 .51-.2.94-.59 1.28-.39.35-.83.52-1.32.52-.31 0-.59-.08-.85-.25-.26-.16-.46-.41-.63-.74l-1.2-2.4H92.72l-1.17 2.4c-.31.66-.9.98-1.77.98Zm8-13.73-3.36 6.74h6.44l-3.09-6.74Zm19.59 13.24c-.37.33-.81.49-1.3.49s-.91-.15-1.26-.46-.52-.75-.52-1.31V22.42c0-.47.16-.87.48-1.19s.71-.48 1.16-.48h7.26c1.27 0 2.38.29 3.32.87a5.7 5.7 0 0 1 2.13 2.29q.72 1.425.72 3c0 1.18-.31 2.27-.91 3.25-.61.98-1.51 1.71-2.69 2.18l3.63 4.42c.25.38.38.77.38 1.17 0 .49-.18.91-.53 1.24-.35.34-.78.51-1.27.51-.64 0-1.18-.29-1.64-.87l-4.12-5.9h-4.29v4.94c0 .56-.19 1.01-.56 1.34Zm5.83-9.42c.86 0 1.53-.29 2.02-.87s.74-1.27.74-2.05-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.27v5.73h5.27Zm14.76 9.43c-.37-.28-.56-.71-.56-1.27V22.44c0-.47.2-.87.59-1.2s.82-.49 1.3-.49h6.25c1.98 0 3.68.45 5.08 1.34s2.45 2.06 3.15 3.49c.7 1.44 1.05 2.98 1.05 4.61s-.35 3.18-1.04 4.61c-.69 1.44-1.72 2.6-3.09 3.49s-3 1.34-4.91 1.34h-6.5q-.765 0-1.32-.42Zm3.04-2.91h4.53c1.18 0 2.2-.3 3.06-.89s1.5-1.36 1.94-2.31q.66-1.425.66-3.03c0-1.605-.21-2.02-.64-2.93a5.4 5.4 0 0 0-1.92-2.23c-.86-.56-1.88-.85-3.09-.85h-4.53V36.3Zm40.74-3.19 4.07-11.25c.16-.4.39-.71.68-.91.29-.21.62-.31.98-.31.47 0 .89.16 1.24.48s.53.72.53 1.21c0 .22-.05.46-.14.74l-5.41 14.66c-.24.76-.49 1.29-.76 1.58s-.65.44-1.12.44c-.44 0-.77-.11-1-.34s-.5-.64-.83-1.24l-4.75-10.78-4.53 10.62c-.27.62-.55 1.07-.83 1.37-.28.29-.65.44-1.11.44s-.82-.15-1.11-.45q-.42-.45-.78-1.41l-5.3-14.88a2.3 2.3 0 0 1-.14-.71c0-.53.18-.95.55-1.26a1.9 1.9 0 0 1 1.28-.46c.36 0 .7.1 1.01.31s.53.51.66.91l4.04 11.25 4.83-11.25c.16-.4.39-.71.67-.94s.58-.34.89-.34.6.1.87.3q.405.3.66.9l4.83 11.33Zm13.59 6.58c-.29 0-.51-.02-.66-.05-.33-.18-.59-.42-.79-.72s-.3-.63-.3-1c0-.31.07-.61.22-.9l7.84-15.32a2 2 0 0 1 .74-.83c.31-.19.64-.29.98-.29s.67.1.97.29.53.47.7.83l7.7 15.32c.15.27.22.56.22.87 0 .51-.2.94-.59 1.28-.39.35-.83.52-1.32.52-.31 0-.59-.08-.85-.25-.26-.16-.46-.41-.63-.74l-1.2-2.4h-10.07l-1.17 2.4c-.31.66-.9.98-1.77.98Zm8-13.73-3.36 6.74h6.44l-3.09-6.74Zm19.59 13.24c-.37.33-.81.49-1.3.49s-.91-.15-1.26-.46-.52-.75-.52-1.31V22.42c0-.47.16-.87.48-1.19s.71-.48 1.16-.48h7.26c1.27 0 2.38.29 3.32.87a5.7 5.7 0 0 1 2.13 2.29q.72 1.425.72 3c0 1.18-.31 2.27-.91 3.25-.61.98-1.51 1.71-2.69 2.18l3.63 4.42c.25.38.38.77.38 1.17 0 .49-.18.91-.53 1.24-.35.34-.78.51-1.27.51-.64 0-1.18-.29-1.64-.87l-4.12-5.9h-4.29v4.94c0 .56-.19 1.01-.56 1.34Zm5.83-9.42c.86 0 1.53-.29 2.02-.87s.74-1.27.74-2.05-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.27v5.73h5.27Zm14.39-7.4c0-.53.18-.95.55-1.26.36-.31.79-.46 1.28-.46s.91.15 1.26.45.52.72.52 1.27v15.59c0 .55-.18.97-.53 1.27s-.79.45-1.3.45c-.47 0-.89-.15-1.24-.45s-.53-.72-.53-1.27V22.39Zm30.26 13.01c-.94 1.48-2.15 2.61-3.64 3.37a10.3 10.3 0 0 1-4.72 1.15c-1.75.07-3.41-.26-4.98-1s-2.85-1.86-3.84-3.37q-1.47-2.265-1.47-5.46c0-3.195.49-3.95 1.47-5.46s2.26-2.65 3.84-3.41c1.57-.76 3.24-1.15 4.98-1.15 1.67.09 3.26.53 4.75 1.31s2.7 1.92 3.63 3.4 1.39 3.25 1.39 5.31-.47 3.83-1.41 5.31m-3.11-8.83c-.63-.98-1.44-1.72-2.43-2.21s-2.03-.74-3.13-.74-2.08.25-3.06.74-1.78 1.23-2.4 2.21-.93 2.16-.93 3.52.31 2.53.93 3.51c.62.97 1.42 1.71 2.4 2.21q1.47.75 3.06.75c1.59 0 2.13-.25 3.13-.75.99-.5 1.8-1.24 2.43-2.21s.94-2.14.94-3.51-.31-2.54-.94-3.52" class="cls-1"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 100"><defs><style>.cls-1{fill:#e30427;}.cls-2{fill:#6b6a6a;}</style></defs><g id="Layer_1-2"><g><path class="cls-1" d="m9,0C4.03,0,0,4.03,0,9h0c0,3.81,2.41,7.19,6,8.46v22.54c0,1.66,1.34,3,3,3,.31,0,.62-.05.92-.15l22.95-7.4c1.7,2.23,4.33,3.54,7.13,3.55,4.97,0,9-4.03,9-9h0c0-4.97-4.03-9-9-9-4.87,0-8.84,3.88-8.98,8.74l-19.02,6.13v-18.42c3.59-1.27,5.99-4.66,6-8.46C18,4.03,13.97,0,9,0h0s0,0,0,0Z"/><path class="cls-1" d="m71,100c4.97,0,9-4.03,9-9h0c0-3.81-2.41-7.19-6-8.46v-22.54c0-1.66-1.34-3-3-3-.31,0-.62.05-.92.15l-22.95,7.4c-1.7-2.23-4.33-3.54-7.13-3.55-4.97,0-9,4.03-9,9h0c0,4.97,4.03,9,9,9h0c4.87,0,8.84-3.88,8.98-8.74l19.02-6.13v18.42c-3.59,1.27-5.99,4.66-6,8.46,0,4.97,4.03,9,9,9h0Z"/><path class="cls-2" d="m71,0c-4.97,0-9,4.03-9,9h0c0,3.81,2.41,7.21,6,8.48v20.34L8.08,57.14c-1.24.4-2.08,1.56-2.07,2.86v22.52C2.41,83.79,0,87.19,0,91c0,4.97,4.03,9,9,9h0c4.97,0,9-4.03,9-9h0c0-3.81-2.4-7.21-6-8.48v-20.33l59.92-19.33c1.24-.4,2.08-1.55,2.08-2.85v-22.52c3.59-1.27,5.99-4.67,6-8.48C80,4.03,75.97,0,71,0h0s0,0,0,0Z"/></g></g></svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Cropped from img/logo.svg by narrowing the root viewBox to the leading
3
+ circuit mark (measured bbox 48.01 x 60). Same official artwork, nothing redrawn. -->
4
+ <svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.1 60">
5
+ <defs>
6
+ <style>
7
+ .cls-1 {
8
+ fill: #ffffff;
9
+ }
10
+
11
+ .cls-2 {
12
+ fill: #ffffff;
13
+ }
14
+ </style>
15
+ </defs>
16
+ <g id="Layer_1-2">
17
+ <g>
18
+ <g>
19
+ <path class="cls-2"
20
+ d="m291.92,39.16c-.37-.28-.56-.7-.56-1.27v-15.48c0-.47.2-.87.59-1.2s.82-.49,1.29-.49h6.24c1.98,0,3.67.45,5.07,1.34,1.4.89,2.45,2.05,3.15,3.49.7,1.44,1.05,2.97,1.05,4.6s-.34,3.17-1.04,4.6-1.72,2.6-3.08,3.49c-1.36.89-3,1.34-4.9,1.34h-6.48c-.51,0-.95-.14-1.32-.42Zm3.04-2.9h4.52c1.18,0,2.2-.29,3.05-.89.85-.59,1.5-1.36,1.93-2.3.44-.94.65-1.95.65-3.02s-.21-2.01-.64-2.93c-.43-.92-1.07-1.66-1.92-2.22-.85-.56-1.88-.84-3.08-.84h-4.52v12.21Z" />
21
+ <path class="cls-2"
22
+ d="m334.51,35.34c-.94,1.48-2.15,2.6-3.64,3.37-1.49.76-3.06,1.14-4.71,1.14-1.74.07-3.4-.26-4.97-.99-1.57-.74-2.85-1.86-3.83-3.37-.98-1.51-1.47-3.32-1.47-5.45s.49-3.94,1.47-5.45c.98-1.51,2.26-2.64,3.83-3.41,1.57-.76,3.23-1.14,4.97-1.14,1.67.09,3.25.53,4.74,1.31,1.49.78,2.7,1.91,3.62,3.39.93,1.48,1.39,3.25,1.39,5.3s-.47,3.82-1.4,5.3Zm-3.11-8.81c-.63-.98-1.43-1.72-2.42-2.21-.99-.49-2.03-.74-3.12-.74s-2.07.24-3.05.74-1.78,1.23-2.4,2.21c-.62.98-.93,2.15-.93,3.51s.31,2.53.93,3.5c.62.97,1.42,1.71,2.4,2.21.98.5,2,.75,3.05.75s2.13-.25,3.12-.75c.99-.5,1.8-1.24,2.42-2.21.63-.97.94-2.14.94-3.5s-.31-2.53-.94-3.51Z" />
23
+ <path class="cls-2"
24
+ d="m347.44,38.46c-1.44-.87-2.5-2.04-3.2-3.51-.7-1.47-1.05-3.12-1.05-4.93s.37-3.44,1.1-4.92c.74-1.48,1.83-2.66,3.27-3.54,1.44-.88,3.17-1.32,5.19-1.32,1.2,0,2.29.19,3.28.57.99.38,1.97,1,2.96,1.85.18.18.33.39.44.63.11.24.16.48.16.74,0,.51-.17.94-.52,1.28-.36.31-.76.46-1.2.46-.51,0-.94-.18-1.31-.54-.53-.56-1.09-.95-1.69-1.17-.6-.22-1.31-.33-2.13-.33-1.34,0-2.48.29-3.42.86-.94.57-1.63,1.34-2.1,2.29-.46.95-.69,2-.69,3.15s.23,2.24.69,3.23,1.16,1.78,2.1,2.37c.94.59,2.07.89,3.42.89,1.53,0,2.94-.58,4.25-1.74.31-.24.66-.35,1.06-.35.29,0,.57.06.83.19.26.13.47.29.61.49.25.35.38.72.38,1.12,0,.51-.23.99-.68,1.44-.87.82-1.84,1.38-2.9,1.68s-2.25.45-3.56.45c-2.11,0-3.88-.44-5.31-1.31Z" />
25
+ <path class="cls-2"
26
+ d="m377.53,32.85c-.39-.34-.87-.62-1.44-.83-.57-.21-1.35-.45-2.33-.72-1.36-.38-2.48-.76-3.34-1.13-.86-.37-1.6-.93-2.21-1.66s-.91-1.7-.91-2.9c0-.16.02-.43.06-.79.13-1.07.54-1.98,1.23-2.72.69-.74,1.55-1.3,2.57-1.68,1.03-.37,2.12-.56,3.28-.56,1,0,1.96.14,2.87.41.92.27,1.72.67,2.41,1.2.51.4.76.87.76,1.42,0,.42-.16.79-.46,1.1-.31.32-.67.48-1.09.48-.34,0-.66-.11-.95-.33-.49-.31-1.1-.56-1.81-.76-.72-.2-1.42-.3-2.11-.3-.84,0-1.55.16-2.14.49-.59.33-.96.84-1.1,1.53-.02.09-.03.22-.03.38,0,.53.19.97.57,1.32s.86.64,1.43.84c.57.21,1.36.45,2.36.72,1.4.38,2.53.76,3.41,1.13.87.37,1.62.93,2.25,1.68.63.74.94,1.72.94,2.92,0,1.38-.35,2.52-1.06,3.43s-1.64,1.58-2.79,2c-1.15.43-2.4.64-3.75.64-1.24,0-2.43-.17-3.57-.52-1.14-.34-2.08-.82-2.81-1.42-.47-.38-.71-.89-.71-1.53,0-.44.11-.82.33-1.14.44-.44.87-.65,1.31-.65.36,0,.74.15,1.12.46.58.4,1.33.74,2.23,1.01s1.78.41,2.62.41c.96,0,1.77-.21,2.41-.63.64-.42,1.02-1.08,1.13-1.99-.05-.53-.28-.96-.67-1.31Z" />
27
+ </g>
28
+ <g>
29
+ <g>
30
+ <path class="cls-1"
31
+ d="m65.52,39.1c-.35-.32-.52-.72-.52-1.21v-15.48c0-.51.17-.92.52-1.23.34-.31.82-.46,1.42-.46.47,0,.87.16,1.19.48.32.32.48.72.48,1.21v5.94h8.88v-5.94c0-.47.18-.87.54-1.2s.8-.49,1.31-.49c.47,0,.87.16,1.2.48s.49.72.49,1.21v15.48c0,.47-.16.87-.49,1.2-.33.33-.73.49-1.2.49s-.92-.16-1.29-.49c-.37-.33-.56-.73-.56-1.2v-5.97h-8.88v5.97c0,.47-.16.87-.48,1.2-.32.33-.71.49-1.19.49-.6,0-1.07-.16-1.42-.48Z" />
32
+ <path class="cls-1"
33
+ d="m89.71,39.63c-.29,0-.51-.02-.65-.05-.33-.18-.59-.42-.79-.72-.2-.3-.3-.63-.3-.99,0-.31.07-.61.22-.9l7.82-15.29c.18-.36.43-.64.74-.83.31-.19.64-.29.98-.29s.67.1.97.29.53.47.7.83l7.68,15.29c.14.27.22.56.22.87,0,.51-.2.94-.59,1.28-.39.35-.83.52-1.32.52-.31,0-.59-.08-.84-.25-.26-.16-.46-.41-.63-.74l-1.2-2.4h-10.05l-1.17,2.4c-.31.65-.9.98-1.77.98Zm7.98-13.71l-3.35,6.73h6.43l-3.08-6.73Z" />
34
+ <path class="cls-1"
35
+ d="m117.24,39.14c-.37.33-.8.49-1.29.49s-.91-.15-1.25-.46c-.34-.31-.52-.74-.52-1.31v-15.48c0-.47.16-.87.48-1.19.32-.32.7-.48,1.16-.48h7.25c1.27,0,2.37.29,3.31.87.94.58,1.64,1.34,2.13,2.29.48.94.72,1.94.72,3,0,1.18-.3,2.26-.91,3.24-.61.98-1.5,1.71-2.68,2.18l3.62,4.41c.25.38.38.77.38,1.17,0,.49-.18.9-.53,1.24-.35.34-.78.5-1.27.5-.64,0-1.18-.29-1.64-.87l-4.11-5.89h-4.28v4.93c0,.56-.19,1.01-.56,1.34Zm5.82-9.4c.85,0,1.53-.29,2.02-.87.49-.58.74-1.26.74-2.04s-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.26v5.72h5.26Z" />
36
+ <path class="cls-1"
37
+ d="m137.79,39.16c-.37-.28-.56-.7-.56-1.27v-15.48c0-.47.19-.87.59-1.2s.82-.49,1.29-.49h6.24c1.98,0,3.67.45,5.07,1.34,1.4.89,2.45,2.05,3.15,3.49.7,1.44,1.05,2.97,1.05,4.6s-.35,3.17-1.04,4.6c-.69,1.44-1.72,2.6-3.08,3.49-1.36.89-3,1.34-4.9,1.34h-6.49c-.51,0-.95-.14-1.32-.42Zm3.04-2.9h4.52c1.18,0,2.2-.29,3.05-.89.85-.59,1.5-1.36,1.93-2.3.44-.94.65-1.95.65-3.02s-.21-2.01-.64-2.93c-.43-.92-1.07-1.66-1.92-2.22-.85-.56-1.88-.84-3.08-.84h-4.52v12.21Z" />
38
+ <path class="cls-1"
39
+ d="m181.48,33.07l4.06-11.23c.16-.4.39-.7.68-.91.29-.21.62-.31.98-.31.47,0,.89.16,1.24.48.35.32.53.72.53,1.21,0,.22-.05.46-.14.74l-5.39,14.63c-.24.76-.49,1.29-.76,1.58-.27.29-.64.44-1.12.44-.44,0-.77-.11-.99-.34-.23-.23-.5-.64-.83-1.24l-4.74-10.76-4.52,10.6c-.27.62-.55,1.07-.83,1.36-.28.29-.65.44-1.1.44s-.82-.15-1.1-.45c-.28-.3-.54-.77-.78-1.4l-5.29-14.85c-.09-.27-.14-.51-.14-.71,0-.53.18-.94.54-1.25.36-.31.79-.46,1.28-.46.36,0,.7.1,1.01.31.31.21.53.51.65.91l4.03,11.23,4.82-11.23c.16-.4.39-.71.67-.94.28-.23.58-.34.89-.34s.6.1.87.3c.27.2.49.5.65.9l4.82,11.31Z" />
40
+ <path class="cls-1"
41
+ d="m195.05,39.63c-.29,0-.51-.02-.65-.05-.33-.18-.59-.42-.79-.72-.2-.3-.3-.63-.3-.99,0-.31.07-.61.22-.9l7.82-15.29c.18-.36.43-.64.74-.83.31-.19.64-.29.98-.29s.67.1.97.29c.3.19.53.47.69.83l7.68,15.29c.15.27.22.56.22.87,0,.51-.2.94-.59,1.28-.39.35-.83.52-1.32.52-.31,0-.59-.08-.84-.25s-.46-.41-.63-.74l-1.2-2.4h-10.05l-1.17,2.4c-.31.65-.9.98-1.77.98Zm7.98-13.71l-3.35,6.73h6.43l-3.08-6.73Z" />
42
+ <path class="cls-1"
43
+ d="m222.58,39.14c-.37.33-.8.49-1.29.49s-.91-.15-1.25-.46c-.35-.31-.52-.74-.52-1.31v-15.48c0-.47.16-.87.48-1.19s.7-.48,1.16-.48h7.25c1.27,0,2.37.29,3.31.87.94.58,1.64,1.34,2.13,2.29.48.94.72,1.94.72,3,0,1.18-.3,2.26-.91,3.24s-1.5,1.71-2.68,2.18l3.62,4.41c.25.38.38.77.38,1.17,0,.49-.18.9-.53,1.24-.35.34-.78.5-1.27.5-.64,0-1.18-.29-1.63-.87l-4.11-5.89h-4.28v4.93c0,.56-.19,1.01-.56,1.34Zm5.82-9.4c.85,0,1.53-.29,2.02-.87.49-.58.74-1.26.74-2.04s-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.26v5.72h5.26Z" />
44
+ <path class="cls-1"
45
+ d="m242.76,22.36c0-.53.18-.94.54-1.25s.79-.46,1.28-.46.91.15,1.25.45c.34.3.52.72.52,1.27v15.56c0,.54-.18.97-.53,1.27-.35.3-.79.45-1.29.45-.47,0-.89-.15-1.24-.45-.35-.3-.53-.72-.53-1.27v-15.56Z" />
46
+ <path class="cls-1"
47
+ d="m272.96,35.34c-.94,1.48-2.15,2.6-3.64,3.37-1.49.76-3.06,1.14-4.71,1.14-1.74.07-3.4-.26-4.97-.99-1.57-.74-2.85-1.86-3.83-3.37-.98-1.51-1.47-3.32-1.47-5.45s.49-3.94,1.47-5.45c.98-1.51,2.26-2.64,3.83-3.41,1.57-.76,3.23-1.14,4.97-1.14,1.67.09,3.25.53,4.74,1.31,1.49.78,2.7,1.91,3.62,3.39.93,1.48,1.39,3.25,1.39,5.3s-.47,3.82-1.4,5.3Zm-3.11-8.81c-.63-.98-1.43-1.72-2.42-2.21-.99-.49-2.03-.74-3.12-.74s-2.07.24-3.05.74-1.78,1.23-2.4,2.21c-.62.98-.93,2.15-.93,3.51s.31,2.53.93,3.5c.62.97,1.42,1.71,2.4,2.21.98.5,2,.75,3.05.75s2.13-.25,3.12-.75c.99-.5,1.8-1.24,2.42-2.21.63-.97.94-2.14.94-3.5s-.31-2.53-.94-3.51Z" />
48
+ </g>
49
+ <g>
50
+ <path class="cls-1"
51
+ d="m5.4,0C2.42,0,0,2.42,0,5.4h0c0,2.28,1.45,4.32,3.6,5.08v13.52c0,.99.81,1.8,1.8,1.8.19,0,.37-.03.55-.09l13.77-4.44c1.02,1.34,2.6,2.12,4.28,2.13,2.98,0,5.4-2.42,5.4-5.4h0c0-2.98-2.42-5.4-5.4-5.4-2.92,0-5.31,2.33-5.39,5.25l-11.41,3.68v-11.05c2.15-.76,3.59-2.79,3.6-5.08C10.8,2.42,8.38,0,5.4,0h0s0,0,0,0Z" />
52
+ <path class="cls-1"
53
+ d="m42.6,60c2.98,0,5.4-2.42,5.4-5.4h0c0-2.28-1.45-4.32-3.6-5.08v-13.52c0-.99-.81-1.8-1.8-1.8-.19,0-.37.03-.55.09l-13.77,4.44c-1.02-1.34-2.6-2.12-4.28-2.13-2.98,0-5.4,2.42-5.4,5.4h0c0,2.98,2.42,5.4,5.4,5.4h0c2.92,0,5.31-2.33,5.39-5.25l11.41-3.68v11.05c-2.15.76-3.59,2.79-3.6,5.08,0,2.98,2.42,5.4,5.4,5.4h0Z" />
54
+ <path class="cls-2"
55
+ d="m42.6,0c-2.98,0-5.4,2.42-5.4,5.4h0c0,2.29,1.44,4.33,3.6,5.09v12.2L4.85,34.29c-.74.24-1.25.93-1.24,1.71v13.51C1.44,50.27,0,52.31,0,54.6c0,2.98,2.42,5.4,5.4,5.4h0c2.98,0,5.4-2.42,5.4-5.4h0c0-2.29-1.44-4.33-3.6-5.09v-12.2l35.95-11.6c.74-.24,1.25-.93,1.25-1.71v-13.52c2.15-.76,3.6-2.8,3.6-5.09C48,2.42,45.58,0,42.6,0h0s0,0,0,0Z" />
56
+ </g>
57
+ </g>
58
+ </g>
59
+ </g>
60
+ </svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Cropped from img/logo.svg by narrowing the root viewBox to the leading
3
+ circuit mark (measured bbox 48.01 x 60). Same official artwork, nothing redrawn. -->
4
+ <svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" width="48.1" height="60" viewBox="0 0 48.1 60">
5
+ <defs>
6
+ <style>
7
+ .cls-1 {
8
+ fill: #e30427;
9
+ }
10
+
11
+ .cls-2 {
12
+ fill: #6b6a6a;
13
+ }
14
+ </style>
15
+ </defs>
16
+ <g id="Layer_1-2">
17
+ <g>
18
+ <g>
19
+ <path class="cls-2"
20
+ d="m291.92,39.16c-.37-.28-.56-.7-.56-1.27v-15.48c0-.47.2-.87.59-1.2s.82-.49,1.29-.49h6.24c1.98,0,3.67.45,5.07,1.34,1.4.89,2.45,2.05,3.15,3.49.7,1.44,1.05,2.97,1.05,4.6s-.34,3.17-1.04,4.6-1.72,2.6-3.08,3.49c-1.36.89-3,1.34-4.9,1.34h-6.48c-.51,0-.95-.14-1.32-.42Zm3.04-2.9h4.52c1.18,0,2.2-.29,3.05-.89.85-.59,1.5-1.36,1.93-2.3.44-.94.65-1.95.65-3.02s-.21-2.01-.64-2.93c-.43-.92-1.07-1.66-1.92-2.22-.85-.56-1.88-.84-3.08-.84h-4.52v12.21Z" />
21
+ <path class="cls-2"
22
+ d="m334.51,35.34c-.94,1.48-2.15,2.6-3.64,3.37-1.49.76-3.06,1.14-4.71,1.14-1.74.07-3.4-.26-4.97-.99-1.57-.74-2.85-1.86-3.83-3.37-.98-1.51-1.47-3.32-1.47-5.45s.49-3.94,1.47-5.45c.98-1.51,2.26-2.64,3.83-3.41,1.57-.76,3.23-1.14,4.97-1.14,1.67.09,3.25.53,4.74,1.31,1.49.78,2.7,1.91,3.62,3.39.93,1.48,1.39,3.25,1.39,5.3s-.47,3.82-1.4,5.3Zm-3.11-8.81c-.63-.98-1.43-1.72-2.42-2.21-.99-.49-2.03-.74-3.12-.74s-2.07.24-3.05.74-1.78,1.23-2.4,2.21c-.62.98-.93,2.15-.93,3.51s.31,2.53.93,3.5c.62.97,1.42,1.71,2.4,2.21.98.5,2,.75,3.05.75s2.13-.25,3.12-.75c.99-.5,1.8-1.24,2.42-2.21.63-.97.94-2.14.94-3.5s-.31-2.53-.94-3.51Z" />
23
+ <path class="cls-2"
24
+ d="m347.44,38.46c-1.44-.87-2.5-2.04-3.2-3.51-.7-1.47-1.05-3.12-1.05-4.93s.37-3.44,1.1-4.92c.74-1.48,1.83-2.66,3.27-3.54,1.44-.88,3.17-1.32,5.19-1.32,1.2,0,2.29.19,3.28.57.99.38,1.97,1,2.96,1.85.18.18.33.39.44.63.11.24.16.48.16.74,0,.51-.17.94-.52,1.28-.36.31-.76.46-1.2.46-.51,0-.94-.18-1.31-.54-.53-.56-1.09-.95-1.69-1.17-.6-.22-1.31-.33-2.13-.33-1.34,0-2.48.29-3.42.86-.94.57-1.63,1.34-2.1,2.29-.46.95-.69,2-.69,3.15s.23,2.24.69,3.23,1.16,1.78,2.1,2.37c.94.59,2.07.89,3.42.89,1.53,0,2.94-.58,4.25-1.74.31-.24.66-.35,1.06-.35.29,0,.57.06.83.19.26.13.47.29.61.49.25.35.38.72.38,1.12,0,.51-.23.99-.68,1.44-.87.82-1.84,1.38-2.9,1.68s-2.25.45-3.56.45c-2.11,0-3.88-.44-5.31-1.31Z" />
25
+ <path class="cls-2"
26
+ d="m377.53,32.85c-.39-.34-.87-.62-1.44-.83-.57-.21-1.35-.45-2.33-.72-1.36-.38-2.48-.76-3.34-1.13-.86-.37-1.6-.93-2.21-1.66s-.91-1.7-.91-2.9c0-.16.02-.43.06-.79.13-1.07.54-1.98,1.23-2.72.69-.74,1.55-1.3,2.57-1.68,1.03-.37,2.12-.56,3.28-.56,1,0,1.96.14,2.87.41.92.27,1.72.67,2.41,1.2.51.4.76.87.76,1.42,0,.42-.16.79-.46,1.1-.31.32-.67.48-1.09.48-.34,0-.66-.11-.95-.33-.49-.31-1.1-.56-1.81-.76-.72-.2-1.42-.3-2.11-.3-.84,0-1.55.16-2.14.49-.59.33-.96.84-1.1,1.53-.02.09-.03.22-.03.38,0,.53.19.97.57,1.32s.86.64,1.43.84c.57.21,1.36.45,2.36.72,1.4.38,2.53.76,3.41,1.13.87.37,1.62.93,2.25,1.68.63.74.94,1.72.94,2.92,0,1.38-.35,2.52-1.06,3.43s-1.64,1.58-2.79,2c-1.15.43-2.4.64-3.75.64-1.24,0-2.43-.17-3.57-.52-1.14-.34-2.08-.82-2.81-1.42-.47-.38-.71-.89-.71-1.53,0-.44.11-.82.33-1.14.44-.44.87-.65,1.31-.65.36,0,.74.15,1.12.46.58.4,1.33.74,2.23,1.01s1.78.41,2.62.41c.96,0,1.77-.21,2.41-.63.64-.42,1.02-1.08,1.13-1.99-.05-.53-.28-.96-.67-1.31Z" />
27
+ </g>
28
+ <g>
29
+ <g>
30
+ <path class="cls-1"
31
+ d="m65.52,39.1c-.35-.32-.52-.72-.52-1.21v-15.48c0-.51.17-.92.52-1.23.34-.31.82-.46,1.42-.46.47,0,.87.16,1.19.48.32.32.48.72.48,1.21v5.94h8.88v-5.94c0-.47.18-.87.54-1.2s.8-.49,1.31-.49c.47,0,.87.16,1.2.48s.49.72.49,1.21v15.48c0,.47-.16.87-.49,1.2-.33.33-.73.49-1.2.49s-.92-.16-1.29-.49c-.37-.33-.56-.73-.56-1.2v-5.97h-8.88v5.97c0,.47-.16.87-.48,1.2-.32.33-.71.49-1.19.49-.6,0-1.07-.16-1.42-.48Z" />
32
+ <path class="cls-1"
33
+ d="m89.71,39.63c-.29,0-.51-.02-.65-.05-.33-.18-.59-.42-.79-.72-.2-.3-.3-.63-.3-.99,0-.31.07-.61.22-.9l7.82-15.29c.18-.36.43-.64.74-.83.31-.19.64-.29.98-.29s.67.1.97.29.53.47.7.83l7.68,15.29c.14.27.22.56.22.87,0,.51-.2.94-.59,1.28-.39.35-.83.52-1.32.52-.31,0-.59-.08-.84-.25-.26-.16-.46-.41-.63-.74l-1.2-2.4h-10.05l-1.17,2.4c-.31.65-.9.98-1.77.98Zm7.98-13.71l-3.35,6.73h6.43l-3.08-6.73Z" />
34
+ <path class="cls-1"
35
+ d="m117.24,39.14c-.37.33-.8.49-1.29.49s-.91-.15-1.25-.46c-.34-.31-.52-.74-.52-1.31v-15.48c0-.47.16-.87.48-1.19.32-.32.7-.48,1.16-.48h7.25c1.27,0,2.37.29,3.31.87.94.58,1.64,1.34,2.13,2.29.48.94.72,1.94.72,3,0,1.18-.3,2.26-.91,3.24-.61.98-1.5,1.71-2.68,2.18l3.62,4.41c.25.38.38.77.38,1.17,0,.49-.18.9-.53,1.24-.35.34-.78.5-1.27.5-.64,0-1.18-.29-1.64-.87l-4.11-5.89h-4.28v4.93c0,.56-.19,1.01-.56,1.34Zm5.82-9.4c.85,0,1.53-.29,2.02-.87.49-.58.74-1.26.74-2.04s-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.26v5.72h5.26Z" />
36
+ <path class="cls-1"
37
+ d="m137.79,39.16c-.37-.28-.56-.7-.56-1.27v-15.48c0-.47.19-.87.59-1.2s.82-.49,1.29-.49h6.24c1.98,0,3.67.45,5.07,1.34,1.4.89,2.45,2.05,3.15,3.49.7,1.44,1.05,2.97,1.05,4.6s-.35,3.17-1.04,4.6c-.69,1.44-1.72,2.6-3.08,3.49-1.36.89-3,1.34-4.9,1.34h-6.49c-.51,0-.95-.14-1.32-.42Zm3.04-2.9h4.52c1.18,0,2.2-.29,3.05-.89.85-.59,1.5-1.36,1.93-2.3.44-.94.65-1.95.65-3.02s-.21-2.01-.64-2.93c-.43-.92-1.07-1.66-1.92-2.22-.85-.56-1.88-.84-3.08-.84h-4.52v12.21Z" />
38
+ <path class="cls-1"
39
+ d="m181.48,33.07l4.06-11.23c.16-.4.39-.7.68-.91.29-.21.62-.31.98-.31.47,0,.89.16,1.24.48.35.32.53.72.53,1.21,0,.22-.05.46-.14.74l-5.39,14.63c-.24.76-.49,1.29-.76,1.58-.27.29-.64.44-1.12.44-.44,0-.77-.11-.99-.34-.23-.23-.5-.64-.83-1.24l-4.74-10.76-4.52,10.6c-.27.62-.55,1.07-.83,1.36-.28.29-.65.44-1.1.44s-.82-.15-1.1-.45c-.28-.3-.54-.77-.78-1.4l-5.29-14.85c-.09-.27-.14-.51-.14-.71,0-.53.18-.94.54-1.25.36-.31.79-.46,1.28-.46.36,0,.7.1,1.01.31.31.21.53.51.65.91l4.03,11.23,4.82-11.23c.16-.4.39-.71.67-.94.28-.23.58-.34.89-.34s.6.1.87.3c.27.2.49.5.65.9l4.82,11.31Z" />
40
+ <path class="cls-1"
41
+ d="m195.05,39.63c-.29,0-.51-.02-.65-.05-.33-.18-.59-.42-.79-.72-.2-.3-.3-.63-.3-.99,0-.31.07-.61.22-.9l7.82-15.29c.18-.36.43-.64.74-.83.31-.19.64-.29.98-.29s.67.1.97.29c.3.19.53.47.69.83l7.68,15.29c.15.27.22.56.22.87,0,.51-.2.94-.59,1.28-.39.35-.83.52-1.32.52-.31,0-.59-.08-.84-.25s-.46-.41-.63-.74l-1.2-2.4h-10.05l-1.17,2.4c-.31.65-.9.98-1.77.98Zm7.98-13.71l-3.35,6.73h6.43l-3.08-6.73Z" />
42
+ <path class="cls-1"
43
+ d="m222.58,39.14c-.37.33-.8.49-1.29.49s-.91-.15-1.25-.46c-.35-.31-.52-.74-.52-1.31v-15.48c0-.47.16-.87.48-1.19s.7-.48,1.16-.48h7.25c1.27,0,2.37.29,3.31.87.94.58,1.64,1.34,2.13,2.29.48.94.72,1.94.72,3,0,1.18-.3,2.26-.91,3.24s-1.5,1.71-2.68,2.18l3.62,4.41c.25.38.38.77.38,1.17,0,.49-.18.9-.53,1.24-.35.34-.78.5-1.27.5-.64,0-1.18-.29-1.63-.87l-4.11-5.89h-4.28v4.93c0,.56-.19,1.01-.56,1.34Zm5.82-9.4c.85,0,1.53-.29,2.02-.87.49-.58.74-1.26.74-2.04s-.24-1.42-.72-1.98c-.48-.55-1.16-.83-2.03-.83h-5.26v5.72h5.26Z" />
44
+ <path class="cls-1"
45
+ d="m242.76,22.36c0-.53.18-.94.54-1.25s.79-.46,1.28-.46.91.15,1.25.45c.34.3.52.72.52,1.27v15.56c0,.54-.18.97-.53,1.27-.35.3-.79.45-1.29.45-.47,0-.89-.15-1.24-.45-.35-.3-.53-.72-.53-1.27v-15.56Z" />
46
+ <path class="cls-1"
47
+ d="m272.96,35.34c-.94,1.48-2.15,2.6-3.64,3.37-1.49.76-3.06,1.14-4.71,1.14-1.74.07-3.4-.26-4.97-.99-1.57-.74-2.85-1.86-3.83-3.37-.98-1.51-1.47-3.32-1.47-5.45s.49-3.94,1.47-5.45c.98-1.51,2.26-2.64,3.83-3.41,1.57-.76,3.23-1.14,4.97-1.14,1.67.09,3.25.53,4.74,1.31,1.49.78,2.7,1.91,3.62,3.39.93,1.48,1.39,3.25,1.39,5.3s-.47,3.82-1.4,5.3Zm-3.11-8.81c-.63-.98-1.43-1.72-2.42-2.21-.99-.49-2.03-.74-3.12-.74s-2.07.24-3.05.74-1.78,1.23-2.4,2.21c-.62.98-.93,2.15-.93,3.51s.31,2.53.93,3.5c.62.97,1.42,1.71,2.4,2.21.98.5,2,.75,3.05.75s2.13-.25,3.12-.75c.99-.5,1.8-1.24,2.42-2.21.63-.97.94-2.14.94-3.5s-.31-2.53-.94-3.51Z" />
48
+ </g>
49
+ <g>
50
+ <path class="cls-1"
51
+ d="m5.4,0C2.42,0,0,2.42,0,5.4h0c0,2.28,1.45,4.32,3.6,5.08v13.52c0,.99.81,1.8,1.8,1.8.19,0,.37-.03.55-.09l13.77-4.44c1.02,1.34,2.6,2.12,4.28,2.13,2.98,0,5.4-2.42,5.4-5.4h0c0-2.98-2.42-5.4-5.4-5.4-2.92,0-5.31,2.33-5.39,5.25l-11.41,3.68v-11.05c2.15-.76,3.59-2.79,3.6-5.08C10.8,2.42,8.38,0,5.4,0h0s0,0,0,0Z" />
52
+ <path class="cls-1"
53
+ d="m42.6,60c2.98,0,5.4-2.42,5.4-5.4h0c0-2.28-1.45-4.32-3.6-5.08v-13.52c0-.99-.81-1.8-1.8-1.8-.19,0-.37.03-.55.09l-13.77,4.44c-1.02-1.34-2.6-2.12-4.28-2.13-2.98,0-5.4,2.42-5.4,5.4h0c0,2.98,2.42,5.4,5.4,5.4h0c2.92,0,5.31-2.33,5.39-5.25l11.41-3.68v11.05c-2.15.76-3.59,2.79-3.6,5.08,0,2.98,2.42,5.4,5.4,5.4h0Z" />
54
+ <path class="cls-2"
55
+ d="m42.6,0c-2.98,0-5.4,2.42-5.4,5.4h0c0,2.29,1.44,4.33,3.6,5.09v12.2L4.85,34.29c-.74.24-1.25.93-1.24,1.71v13.51C1.44,50.27,0,52.31,0,54.6c0,2.98,2.42,5.4,5.4,5.4h0c2.98,0,5.4-2.42,5.4-5.4h0c0-2.29-1.44-4.33-3.6-5.09v-12.2l35.95-11.6c.74-.24,1.25-.93,1.25-1.71v-13.52c2.15-.76,3.6-2.8,3.6-5.09C48,2.42,45.58,0,42.6,0h0s0,0,0,0Z" />
56
+ </g>
57
+ </g>
58
+ </g>
59
+ </g>
60
+ </svg>
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@hubpav/hwio-brand",
3
+ "version": "0.1.0",
4
+ "description": "HARDWARIO brand source of truth: palette, theme roles, fonts, logos and the sites registry, generated into CSS and JSON for any stack.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/hardwario/website-ui.git",
10
+ "directory": "packages/brand"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "src",
15
+ "fonts",
16
+ "logos",
17
+ "README.md"
18
+ ],
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/sites.d.ts",
22
+ "default": "./dist/sites.js"
23
+ },
24
+ "./brand.json": "./src/brand.json",
25
+ "./tokens.json": "./dist/tokens.json",
26
+ "./vars.css": "./dist/vars.css",
27
+ "./docusaurus.css": "./dist/docusaurus.css",
28
+ "./fonts/*": "./dist/fonts/*",
29
+ "./logos/*": "./logos/*",
30
+ "./package.json": "./package.json"
31
+ },
32
+ "scripts": {
33
+ "build": "node scripts/build.mjs",
34
+ "test": "node --test \"test/**/*.test.mjs\""
35
+ },
36
+ "sideEffects": false
37
+ }