-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-options.html
More file actions
333 lines (306 loc) · 10.3 KB
/
Copy pathcreate-options.html
File metadata and controls
333 lines (306 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Gradient Options</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
background: #F1F5F9;
padding: 48px 44px 64px;
}
h1 {
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #94A3B8;
margin-bottom: 40px;
}
/* ─── OPTION BLOCK ─── */
.option-block {
background: white;
border-radius: 24px;
padding: 32px;
margin-bottom: 24px;
border: 1.5px solid #E2E8F0;
box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.option-label {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
}
.option-letter {
width: 32px; height: 32px;
border-radius: 50%;
background: #0d1c4a;
color: white;
font-size: 0.7rem;
font-weight: 800;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.option-title {
font-size: 0.9rem;
font-weight: 800;
color: #0d1c4a;
}
.option-sub {
font-size: 0.68rem;
color: #94A3B8;
margin-top: 2px;
}
/* ─── FAMILY ROW ─── */
.family-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 14px;
}
/* ─── SWATCH ─── */
.sw { border-radius: 16px; overflow: hidden; border: 1.5px solid rgba(0,0,0,0.06); }
.sw-colour {
height: 110px;
display: flex;
align-items: flex-end;
justify-content: flex-start;
padding: 14px 16px;
position: relative;
}
/* mini pill button preview inside swatch */
.sw-pill {
font-size: 0.58rem;
font-weight: 800;
padding: 6px 14px;
border-radius: 100px;
white-space: nowrap;
}
.sw-body {
background: white;
padding: 14px 16px 16px;
}
.sw-product {
font-size: 0.52rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #CBD5E1;
margin-bottom: 4px;
}
.sw-name {
font-size: 0.82rem;
font-weight: 800;
color: #0d1c4a;
margin-bottom: 3px;
}
.sw-hex {
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 0.6rem;
color: #94A3B8;
margin-bottom: 6px;
}
.sw-desc {
font-size: 0.62rem;
color: #64748B;
line-height: 1.5;
}
/* ─── DIVIDER ─── */
.option-divider {
display: flex;
align-items: center;
gap: 12px;
margin: 0 8px 0;
}
.od-line { flex: 1; height: 1px; background: #E2E8F0; }
.od-arrow { font-size: 0.7rem; color: #CBD5E1; }
/* ─── NOTE ─── */
.option-note {
margin-top: 18px;
padding: 12px 16px;
background: #F8FAFC;
border-radius: 10px;
font-size: 0.68rem;
color: #64748B;
line-height: 1.6;
border-left: 3px solid #E2E8F0;
}
.option-note strong { color: #0d1c4a; }
/* ─── PICK BADGE ─── */
.pick-badge {
font-size: 0.55rem;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
background: #0EBD8E;
color: white;
padding: 3px 10px;
border-radius: 100px;
}
</style>
</head>
<body>
<h1>Wowzi · Create Gradient Options — Cool Family</h1>
<!-- ══════════════════════════════════════
OPTION A — Cyan → Sky
══════════════════════════════════════ -->
<div class="option-block">
<div class="option-label">
<div class="option-letter">A</div>
<div>
<div class="option-title">Cyan → Sky <span class="pick-badge">My pick</span></div>
<div class="option-sub">The airy, bright corner of the cool spectrum — distinct altitude from Launch</div>
</div>
</div>
<div class="family-row">
<!-- Pro -->
<div class="sw">
<div class="sw-colour" style="background:#0d1c4a;">
<div class="sw-pill" style="background:white;color:#0d1c4a;">Get started →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Pro</div>
<div class="sw-name">Deep Navy</div>
<div class="sw-hex">#0d1c4a</div>
<div class="sw-desc">Still. Authoritative. The dark anchor.</div>
</div>
</div>
<!-- Launch -->
<div class="sw">
<div class="sw-colour" style="background:linear-gradient(135deg,#3B82F6,#14B8A6);">
<div class="sw-pill" style="background:white;color:#1D64D8;">Launch now →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Launch</div>
<div class="sw-name">Blue → Teal</div>
<div class="sw-hex">#3B82F6 → #14B8A6</div>
<div class="sw-desc">Mid cool. Saturated momentum.</div>
</div>
</div>
<!-- Create A -->
<div class="sw">
<div class="sw-colour" style="background:linear-gradient(135deg,#06B6D4,#0EA5E9);">
<div class="sw-pill" style="background:#0d1c4a;color:#06B6D4;">Join free →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Create</div>
<div class="sw-name">Cyan → Sky</div>
<div class="sw-hex">#06B6D4 → #0EA5E9</div>
<div class="sw-desc">Light cool. Airy, bright, human energy.</div>
</div>
</div>
</div>
<div class="option-note">
<strong>Why it works:</strong> Pro is darkest, Launch is mid, Create is lightest. Three steps on the same cool ladder — distinct altitude, one bloodline. Create feels accessible and energetic without copying Launch's exact arc.
</div>
</div>
<!-- ══════════════════════════════════════
OPTION B — Flip the arc
══════════════════════════════════════ -->
<div class="option-block">
<div class="option-label">
<div class="option-letter">B</div>
<div>
<div class="option-title">Flip the arc — Sky → Teal</div>
<div class="option-sub">Same colours as Launch, reversed direction — different entry, shared DNA</div>
</div>
</div>
<div class="family-row">
<!-- Pro -->
<div class="sw">
<div class="sw-colour" style="background:#0d1c4a;">
<div class="sw-pill" style="background:white;color:#0d1c4a;">Get started →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Pro</div>
<div class="sw-name">Deep Navy</div>
<div class="sw-hex">#0d1c4a</div>
<div class="sw-desc">Still. Authoritative. The dark anchor.</div>
</div>
</div>
<!-- Launch -->
<div class="sw">
<div class="sw-colour" style="background:linear-gradient(135deg,#3B82F6,#14B8A6);">
<div class="sw-pill" style="background:white;color:#1D64D8;">Launch now →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Launch</div>
<div class="sw-name">Blue → Teal</div>
<div class="sw-hex">#3B82F6 → #14B8A6</div>
<div class="sw-desc">Blue-dominant. Arrives at teal.</div>
</div>
</div>
<!-- Create B -->
<div class="sw">
<div class="sw-colour" style="background:linear-gradient(135deg,#0EA5E9,#14B8A6);">
<div class="sw-pill" style="background:#0d1c4a;color:#0EA5E9;">Join free →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Create</div>
<div class="sw-name">Sky → Teal</div>
<div class="sw-hex">#0EA5E9 → #14B8A6</div>
<div class="sw-desc">Teal-dominant. Arrives from sky.</div>
</div>
</div>
</div>
<div class="option-note">
<strong>Risk:</strong> Side-by-side these read as near-identical. Launch and Create share all the same hues — reversed order is a subtle distinction that won't hold at small sizes, in dark UI, or across print. Too easy to mix up.
</div>
</div>
<!-- ══════════════════════════════════════
OPTION C — Indigo → Cyan
══════════════════════════════════════ -->
<div class="option-block">
<div class="option-label">
<div class="option-letter">C</div>
<div>
<div class="option-title">Indigo → Cyan</div>
<div class="option-sub">Purple-cool end of the spectrum — premium, creative, clearly its own corner</div>
</div>
</div>
<div class="family-row">
<!-- Pro -->
<div class="sw">
<div class="sw-colour" style="background:#0d1c4a;">
<div class="sw-pill" style="background:white;color:#0d1c4a;">Get started →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Pro</div>
<div class="sw-name">Deep Navy</div>
<div class="sw-hex">#0d1c4a</div>
<div class="sw-desc">Still. Authoritative. The dark anchor.</div>
</div>
</div>
<!-- Launch -->
<div class="sw">
<div class="sw-colour" style="background:linear-gradient(135deg,#3B82F6,#14B8A6);">
<div class="sw-pill" style="background:white;color:#1D64D8;">Launch now →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Launch</div>
<div class="sw-name">Blue → Teal</div>
<div class="sw-hex">#3B82F6 → #14B8A6</div>
<div class="sw-desc">Mid cool. Saturated momentum.</div>
</div>
</div>
<!-- Create C -->
<div class="sw">
<div class="sw-colour" style="background:linear-gradient(135deg,#6366F1,#06B6D4);">
<div class="sw-pill" style="background:#0d1c4a;color:#A5B4FC;">Join free →</div>
</div>
<div class="sw-body">
<div class="sw-product">Wowzi Create</div>
<div class="sw-name">Indigo → Cyan</div>
<div class="sw-hex">#6366F1 → #06B6D4</div>
<div class="sw-desc">Purple-cool. Premium, expressive, distinct.</div>
</div>
</div>
</div>
<div class="option-note">
<strong>Why it works:</strong> Indigo is still cool — but it occupies the violet-blue corner that neither Pro nor Launch touches. Unmistakably distinct. Feels creative, premium, expressive. Risk: may read as a separate brand, not a sibling.
</div>
</div>
</body>
</html>