-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
471 lines (418 loc) · 19.8 KB
/
example.html
File metadata and controls
471 lines (418 loc) · 19.8 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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aiotize Branding Example</title>
<link rel="stylesheet" href="styles.css">
<style>
/* Additional page-specific styles */
.theme-switcher {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 1001;
}
.theme-button {
padding: 0.5rem 1rem;
margin: 0 0.25rem;
border: 2px solid var(--color-primary);
background-color: var(--color-background);
color: var(--color-text-primary);
cursor: pointer;
border-radius: 0.375rem;
font-size: 0.875rem;
transition: all 0.2s;
}
.theme-button:hover {
background-color: var(--color-primary);
color: white;
}
.theme-button.active {
background-color: var(--color-primary);
color: white;
}
</style>
</head>
<body class="numbered-headings numbered-figures numbered-tables">
<!-- Theme Switcher -->
<div class="theme-switcher">
<button class="theme-button active" data-theme="light">Light</button>
<button class="theme-button" data-theme="dark">Dark</button>
<button class="theme-button" data-theme="custom">Custom</button>
</div>
<!-- Header -->
<header>
<div style="display: flex; align-items: center;">
<h1 style="margin: 0; font-size: 1.5rem;">Aiotize</h1>
</div>
<nav>
<a href="#overview" style="margin-right: 1rem;">Overview</a>
<a href="#typography" style="margin-right: 1rem;">Typography</a>
<a href="#layout" style="margin-right: 1rem;">Layout</a>
<a href="#imagery">Imagery</a>
</nav>
</header>
<!-- Main Content -->
<main class="container">
<!-- Introduction Section -->
<section id="overview">
<h1>Aiotize Brand Guidelines</h1>
<p>
Welcome to the Aiotize brand guidelines. This document demonstrates our custom layout,
branding, spacing, margins, typography hierarchy, and theme capabilities. Our design
system supports light, dark, and custom themes with consistent styling across all platforms.
</p>
<p>
This page serves as a living example of our brand standards, including color palettes,
fonts, hyperlink styles, numbering conventions, and imagery parameters. Each element
has been carefully crafted to ensure brand consistency and optimal user experience.
</p>
</section>
<!-- Typography Section -->
<section id="typography">
<h2>Typography & Heading Hierarchy</h2>
<p>
Our typography system uses a clear hierarchy with numbered headings for easy navigation
and reference. Below are examples of each heading level with automatic numbering.
</p>
<h3>Font Families</h3>
<p>
We use <strong>Inter</strong> as our primary font for body text, providing excellent
readability across all devices. For display headings, we use <strong>Montserrat</strong>
to create visual impact and brand recognition.
</p>
<div class="card">
<p><strong>Primary Font:</strong> Inter (sans-serif)</p>
<p><strong>Display Font:</strong> Montserrat (sans-serif)</p>
<p><strong>Secondary Font:</strong> Georgia (serif)</p>
<p><strong>Monospace Font:</strong> Fira Code (monospace)</p>
</div>
<h3>Heading Styles</h3>
<p>Each heading level has specific styling for size, weight, and spacing:</p>
<h4>This is a Heading 4</h4>
<p>Heading 4 is used for subsections within major topics.</p>
<h5>This is a Heading 5</h5>
<p>Heading 5 is used for minor subsections and details.</p>
<h6>This is a Heading 6</h6>
<p>Heading 6 is the smallest heading, used for fine-grained divisions.</p>
</section>
<!-- Color Palette Section -->
<section id="colors">
<h2>Color Palettes</h2>
<h3>Primary Colors</h3>
<p>Our primary color palette establishes brand identity and creates visual hierarchy:</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 2rem;">
<div class="card bg-primary" style="color: white; text-align: center;">
<strong>Primary</strong>
<p style="margin: 0;">#0066CC</p>
</div>
<div class="card bg-secondary" style="color: white; text-align: center;">
<strong>Secondary</strong>
<p style="margin: 0;">#4A90E2</p>
</div>
<div class="card" style="background-color: var(--color-accent); color: white; text-align: center;">
<strong>Accent</strong>
<p style="margin: 0;">#00A3E0</p>
</div>
</div>
<h3>Semantic Colors</h3>
<p>Semantic colors communicate status and feedback to users:</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 2rem;">
<div class="card bg-success" style="color: white; text-align: center;">
<strong>Success</strong>
<p style="margin: 0;">#4CAF50</p>
</div>
<div class="card bg-warning" style="color: white; text-align: center;">
<strong>Warning</strong>
<p style="margin: 0;">#FF9800</p>
</div>
<div class="card bg-error" style="color: white; text-align: center;">
<strong>Error</strong>
<p style="margin: 0;">#F44336</p>
</div>
<div class="card bg-info" style="color: white; text-align: center;">
<strong>Info</strong>
<p style="margin: 0;">#2196F3</p>
</div>
</div>
</section>
<!-- Spacing & Layout Section -->
<section id="layout">
<h2>Spacing & Layout</h2>
<h3>Spacing Scale</h3>
<p>
Our spacing system uses a consistent scale based on a 0.25rem (4px) unit. This ensures
visual harmony and alignment throughout the design.
</p>
<div class="card">
<ul>
<li><code>spacing-1</code> = 0.25rem (4px)</li>
<li><code>spacing-2</code> = 0.5rem (8px)</li>
<li><code>spacing-4</code> = 1rem (16px)</li>
<li><code>spacing-8</code> = 2rem (32px)</li>
<li><code>spacing-16</code> = 4rem (64px)</li>
</ul>
</div>
<h3>Margins & Padding</h3>
<p>
Page margins: 3rem vertical, 2rem horizontal<br>
Section margins: 2rem vertical<br>
Card padding: 1.5rem<br>
Button padding: 0.5rem vertical, 1rem horizontal
</p>
<h3>Containers</h3>
<p>
We provide multiple container sizes for responsive layouts:
</p>
<div class="card">
<ul>
<li><strong>Small:</strong> 640px - For narrow content</li>
<li><strong>Medium:</strong> 768px - For standard content</li>
<li><strong>Large:</strong> 1024px - For wide content</li>
<li><strong>Extra Large:</strong> 1280px - For full-width layouts</li>
<li><strong>2XL:</strong> 1536px - For ultra-wide displays</li>
</ul>
</div>
</section>
<!-- Hyperlinks Section -->
<section id="hyperlinks">
<h2>Hyperlinks & Navigation</h2>
<h3>Link Styles</h3>
<p>
Our hyperlinks are styled for clarity and accessibility. They feature:
</p>
<ul>
<li><a href="#">Default link state</a> - Primary color with subtle underline</li>
<li><a href="#" style="color: var(--color-secondary);">Hover state</a> - Secondary color with enhanced underline</li>
<li><a href="#" style="color: #5B21B6;">Visited state</a> - Purple to indicate visited links</li>
<li><a href="#" style="color: var(--color-accent);">Active state</a> - Accent color when clicked</li>
</ul>
<p>
All links have proper focus states for keyboard navigation and meet WCAG accessibility standards.
</p>
</section>
<!-- Lists & Numbering Section -->
<section id="numbering">
<h2>Lists & Numbering</h2>
<h3>Ordered Lists</h3>
<p>Use ordered lists for sequential information:</p>
<ol>
<li>First item in the sequence</li>
<li>Second item with proper spacing</li>
<li>Third item maintaining consistency
<ol>
<li>Nested ordered list item</li>
<li>Another nested item</li>
</ol>
</li>
<li>Fourth item</li>
</ol>
<h3>Unordered Lists</h3>
<p>Use unordered lists for non-sequential information:</p>
<ul>
<li>Feature one</li>
<li>Feature two</li>
<li>Feature three
<ul>
<li>Sub-feature A</li>
<li>Sub-feature B</li>
</ul>
</li>
<li>Feature four</li>
</ul>
</section>
<!-- Imagery Section -->
<section id="imagery">
<h2>Imagery & Graphics Guidelines</h2>
<h3>Image Parameters</h3>
<p>
Our imagery guidelines ensure consistent visual communication across all brand materials.
We define specific parameters for lens, tone, and warmth to maintain brand identity.
</p>
<h4>Standard Lens Parameters</h4>
<div class="card">
<p><strong>Focal Length:</strong> 50mm equivalent (natural perspective)</p>
<p><strong>Aperture:</strong> f/5.6 (balanced depth of field)</p>
<p><strong>Perspective:</strong> Natural, minimal distortion</p>
<p style="margin-bottom: 0;"><strong>Usage:</strong> Product photography, portraits, general use</p>
</div>
<h4>Tone & Mood</h4>
<div class="card">
<p><strong>Professional Tone:</strong> Medium contrast, 85% saturation, neutral brightness</p>
<p><strong>Friendly Tone:</strong> Low contrast, 95% saturation, bright</p>
<p style="margin-bottom: 0;"><strong>Dramatic Tone:</strong> High contrast, 75% saturation, varied brightness</p>
</div>
<h4>Warmth Settings</h4>
<div class="card">
<p><strong>Cool (6500K):</strong> Blue tint - Technology, modern applications</p>
<p><strong>Neutral (5500K):</strong> Balanced - General, versatile use</p>
<p style="margin-bottom: 0;"><strong>Warm (3200K):</strong> Orange tint - Comfort, trust, welcoming</p>
</div>
<h3>Aspect Ratios</h3>
<p>Standard aspect ratios for different use cases:</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem;">
<div class="card">
<div class="image-hero" style="background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); margin-bottom: 0.5rem;"></div>
<strong>Hero: 16:9</strong>
</div>
<div class="card">
<div class="image-thumbnail" style="background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)); margin-bottom: 0.5rem;"></div>
<strong>Thumbnail: 4:3</strong>
</div>
<div class="card">
<div class="image-square" style="background: linear-gradient(135deg, var(--color-accent), var(--color-primary)); margin-bottom: 0.5rem;"></div>
<strong>Square: 1:1</strong>
</div>
</div>
<figure>
<div style="width: 100%; height: 300px; background: linear-gradient(135deg, #0066CC, #4A90E2, #00A3E0); border-radius: 0.5rem;"></div>
<figcaption>Example of branded imagery with gradient overlay using brand colors</figcaption>
</figure>
</section>
<!-- Components Section -->
<section id="components">
<h2>UI Components</h2>
<h3>Buttons</h3>
<p>Button styles for different actions:</p>
<div style="display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;">
<button class="button button-primary">Primary Button</button>
<button class="button button-secondary">Secondary Button</button>
</div>
<h3>Cards</h3>
<p>Cards group related content with consistent padding and styling:</p>
<div class="card">
<h4 style="margin-top: 0;">Card Title</h4>
<p>Cards are versatile containers that can hold any type of content. They feature
consistent padding, background color, and subtle shadows for depth.</p>
<button class="button button-primary">Card Action</button>
</div>
<h3>Tables</h3>
<p>Tables organize data in rows and columns:</p>
<table>
<thead>
<tr>
<th>Feature</th>
<th>Description</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>Custom Themes</td>
<td>Light, dark, and custom theme support</td>
<td class="text-success">✓ Complete</td>
</tr>
<tr>
<td>Typography System</td>
<td>Comprehensive heading and text styles</td>
<td class="text-success">✓ Complete</td>
</tr>
<tr>
<td>Spacing Scale</td>
<td>Consistent spacing using 0.25rem units</td>
<td class="text-success">✓ Complete</td>
</tr>
<tr>
<td>Color Palettes</td>
<td>Brand and semantic color definitions</td>
<td class="text-success">✓ Complete</td>
</tr>
</tbody>
</table>
</section>
<!-- Topic Chronology Section -->
<section id="chronology">
<h2>Topic Chronology & Structure</h2>
<h3>Content Organization</h3>
<p>
Our content follows a clear chronological structure for optimal comprehension and navigation.
</p>
<div class="card">
<h4 style="margin-top: 0;">1. Introduction</h4>
<ul>
<li>Overview of the topic</li>
<li>Objectives and goals</li>
<li>Scope and boundaries</li>
</ul>
</div>
<div class="card">
<h4 style="margin-top: 0;">2. Main Content</h4>
<ul>
<li>Context and background</li>
<li>Detailed information</li>
<li>Examples and use cases</li>
<li>Analysis and insights</li>
</ul>
</div>
<div class="card">
<h4 style="margin-top: 0;">3. Conclusion</h4>
<ul>
<li>Summary of key points</li>
<li>Main takeaways</li>
<li>Next steps and actions</li>
</ul>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="container">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;">
<div>
<h5>About Aiotize</h5>
<p style="font-size: 0.875rem; color: var(--color-text-secondary);">
Building innovative solutions with consistent branding and design excellence.
</p>
</div>
<div>
<h5>Quick Links</h5>
<ul style="list-style: none; margin: 0; padding: 0; font-size: 0.875rem;">
<li style="margin-bottom: 0.5rem;"><a href="#overview">Overview</a></li>
<li style="margin-bottom: 0.5rem;"><a href="#typography">Typography</a></li>
<li style="margin-bottom: 0.5rem;"><a href="#layout">Layout</a></li>
<li style="margin-bottom: 0.5rem;"><a href="#imagery">Imagery</a></li>
</ul>
</div>
<div>
<h5>Resources</h5>
<ul style="list-style: none; margin: 0; padding: 0; font-size: 0.875rem;">
<li style="margin-bottom: 0.5rem;"><a href="branding-config.json">Branding Config</a></li>
<li style="margin-bottom: 0.5rem;"><a href="styles.css">Stylesheet</a></li>
<li style="margin-bottom: 0.5rem;"><a href="README.md">Documentation</a></li>
</ul>
</div>
</div>
<div style="margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(0, 0, 0, 0.1); text-align: center; font-size: 0.875rem; color: var(--color-text-secondary);">
<p style="margin: 0;">© 2025 Aiotize. All rights reserved. | <a href="LICENSE">MIT License</a></p>
</div>
</div>
</footer>
<!-- Theme Switcher Script -->
<script>
const buttons = document.querySelectorAll('.theme-button');
const html = document.documentElement;
buttons.forEach(button => {
button.addEventListener('click', () => {
const theme = button.getAttribute('data-theme');
html.setAttribute('data-theme', theme);
// Update active button
buttons.forEach(btn => btn.classList.remove('active'));
button.classList.add('active');
// Save preference
localStorage.setItem('theme', theme);
});
});
// Load saved theme
const savedTheme = localStorage.getItem('theme') || 'light';
html.setAttribute('data-theme', savedTheme);
buttons.forEach(btn => {
if (btn.getAttribute('data-theme') === savedTheme) {
btn.classList.add('active');
} else {
btn.classList.remove('active');
}
});
</script>
</body>
</html>