@arclux/arc-ui-html 1.0.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 (138) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/css/animated-number.css +12 -0
  4. package/css/app-shell.css +52 -0
  5. package/css/arc-ui.css +3045 -0
  6. package/css/aspect-ratio.css +23 -0
  7. package/css/auth-shell.css +98 -0
  8. package/css/avatar-group.css +49 -0
  9. package/css/avatar.css +53 -0
  10. package/css/badge.css +76 -0
  11. package/css/button.css +94 -0
  12. package/css/callout.css +84 -0
  13. package/css/card.css +50 -0
  14. package/css/code-block.css +86 -0
  15. package/css/color-swatch.css +47 -0
  16. package/css/container.css +15 -0
  17. package/css/dashboard-grid.css +21 -0
  18. package/css/divider.css +128 -0
  19. package/css/empty-state.css +43 -0
  20. package/css/feature-card.css +102 -0
  21. package/css/footer.css +60 -0
  22. package/css/form.css +454 -0
  23. package/css/highlight.css +13 -0
  24. package/css/icon-button.css +118 -0
  25. package/css/icon.css +36 -0
  26. package/css/kbd.css +21 -0
  27. package/css/link.css +74 -0
  28. package/css/markdown.css +133 -0
  29. package/css/meter.css +59 -0
  30. package/css/page-header.css +55 -0
  31. package/css/page-layout.css +65 -0
  32. package/css/progress.css +96 -0
  33. package/css/scroll-area.css +70 -0
  34. package/css/section.css +27 -0
  35. package/css/settings-layout.css +55 -0
  36. package/css/skeleton.css +44 -0
  37. package/css/spinner.css +46 -0
  38. package/css/stack.css +38 -0
  39. package/css/stat.css +42 -0
  40. package/css/status-bar.css +50 -0
  41. package/css/stepper.css +134 -0
  42. package/css/table.css +85 -0
  43. package/css/text.css +77 -0
  44. package/css/timeline.css +117 -0
  45. package/css/toolbar.css +54 -0
  46. package/css/tooltip.css +107 -0
  47. package/css/top-bar.css +158 -0
  48. package/css/value-card.css +60 -0
  49. package/examples/animated-number.html +8 -0
  50. package/examples/animated-number.inline.html +8 -0
  51. package/examples/app-shell.html +20 -0
  52. package/examples/app-shell.inline.html +31 -0
  53. package/examples/aspect-ratio.html +12 -0
  54. package/examples/aspect-ratio.inline.html +12 -0
  55. package/examples/auth-shell.html +20 -0
  56. package/examples/auth-shell.inline.html +28 -0
  57. package/examples/avatar-group.html +8 -0
  58. package/examples/avatar-group.inline.html +8 -0
  59. package/examples/avatar.html +7 -0
  60. package/examples/avatar.inline.html +11 -0
  61. package/examples/badge.html +5 -0
  62. package/examples/badge.inline.html +10 -0
  63. package/examples/button.html +5 -0
  64. package/examples/button.inline.html +21 -0
  65. package/examples/callout.html +12 -0
  66. package/examples/callout.inline.html +12 -0
  67. package/examples/card.html +5 -0
  68. package/examples/card.inline.html +13 -0
  69. package/examples/code-block.html +18 -0
  70. package/examples/code-block.inline.html +22 -0
  71. package/examples/color-swatch.html +12 -0
  72. package/examples/color-swatch.inline.html +16 -0
  73. package/examples/container.html +5 -0
  74. package/examples/container.inline.html +5 -0
  75. package/examples/dashboard-grid.html +7 -0
  76. package/examples/dashboard-grid.inline.html +10 -0
  77. package/examples/divider.html +5 -0
  78. package/examples/divider.inline.html +10 -0
  79. package/examples/empty-state.html +14 -0
  80. package/examples/empty-state.inline.html +14 -0
  81. package/examples/feature-card.html +12 -0
  82. package/examples/feature-card.inline.html +25 -0
  83. package/examples/footer.html +18 -0
  84. package/examples/footer.inline.html +18 -0
  85. package/examples/form.html +86 -0
  86. package/examples/highlight.html +5 -0
  87. package/examples/highlight.inline.html +5 -0
  88. package/examples/icon-button.html +5 -0
  89. package/examples/icon-button.inline.html +22 -0
  90. package/examples/icon.html +12 -0
  91. package/examples/icon.inline.html +12 -0
  92. package/examples/kbd.html +5 -0
  93. package/examples/kbd.inline.html +5 -0
  94. package/examples/link.html +13 -0
  95. package/examples/link.inline.html +23 -0
  96. package/examples/markdown.html +6 -0
  97. package/examples/markdown.inline.html +16 -0
  98. package/examples/meter.html +20 -0
  99. package/examples/meter.inline.html +29 -0
  100. package/examples/page-header.html +22 -0
  101. package/examples/page-header.inline.html +22 -0
  102. package/examples/page-layout.html +15 -0
  103. package/examples/page-layout.inline.html +21 -0
  104. package/examples/progress.html +20 -0
  105. package/examples/progress.inline.html +27 -0
  106. package/examples/scroll-area.html +12 -0
  107. package/examples/scroll-area.inline.html +22 -0
  108. package/examples/section.html +8 -0
  109. package/examples/section.inline.html +13 -0
  110. package/examples/settings-layout.html +12 -0
  111. package/examples/settings-layout.inline.html +22 -0
  112. package/examples/skeleton.html +10 -0
  113. package/examples/skeleton.inline.html +15 -0
  114. package/examples/spinner.html +9 -0
  115. package/examples/spinner.inline.html +9 -0
  116. package/examples/stack.html +5 -0
  117. package/examples/stack.inline.html +5 -0
  118. package/examples/stat.html +9 -0
  119. package/examples/stat.inline.html +10 -0
  120. package/examples/status-bar.html +15 -0
  121. package/examples/status-bar.inline.html +15 -0
  122. package/examples/stepper.html +18 -0
  123. package/examples/stepper.inline.html +18 -0
  124. package/examples/table.html +7 -0
  125. package/examples/table.inline.html +7 -0
  126. package/examples/text.html +5 -0
  127. package/examples/text.inline.html +5 -0
  128. package/examples/timeline.html +10 -0
  129. package/examples/timeline.inline.html +10 -0
  130. package/examples/toolbar.html +15 -0
  131. package/examples/toolbar.inline.html +15 -0
  132. package/examples/tooltip.html +19 -0
  133. package/examples/tooltip.inline.html +19 -0
  134. package/examples/top-bar.html +23 -0
  135. package/examples/top-bar.inline.html +29 -0
  136. package/examples/value-card.html +11 -0
  137. package/examples/value-card.inline.html +15 -0
  138. package/package.json +31 -0
@@ -0,0 +1,12 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-color-swatch — requires color-swatch.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-color-swatch">
4
+ <div class="swatch">
5
+ <div
6
+ class="swatch__color"
7
+ style="background-color:Color"
8
+ role="img"
9
+ ></div>
10
+ <span class="swatch__label"></span>
11
+ </div>
12
+ </span>
@@ -0,0 +1,16 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-color-swatch — self-contained, no external CSS needed -->
3
+ <style>
4
+ .arc-color-swatch .swatch__color:hover { border-color: rgb(51, 51, 64);
5
+ box-shadow: 0 0 12px rgba(77, 126, 247, 0.1); }
6
+ </style>
7
+ <span class="arc-color-swatch" style="display: inline-flex">
8
+ <div class="swatch" style="display: flex; flex-direction: column; align-items: center; gap: 8px">
9
+ <div
10
+ class="swatch__color" style="border-radius: 10px; border: 1px solid rgb(34, 34, 41)"
11
+ style="background-color:Color"
12
+ role="img"
13
+ ></div>
14
+ <span style="font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: rgb(124, 124, 137); text-align: center; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap"></span>
15
+ </div>
16
+ </span>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-container — requires container.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-container">
4
+ <div class="container">Container</div>
5
+ </div>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-container — self-contained, no external CSS needed -->
3
+ <div class="arc-container" style="display: block">
4
+ <div style="width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: 24px">Container</div>
5
+ </div>
@@ -0,0 +1,7 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-dashboard-grid — requires dashboard-grid.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-dashboard-grid">
4
+ <div class="dashboard-grid">
5
+ Dashboard Grid
6
+ </div>
7
+ </div>
@@ -0,0 +1,10 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-dashboard-grid — self-contained, no external CSS needed -->
3
+ <div class="arc-dashboard-grid" style="display: block; box-sizing: border-box">
4
+ <div style="display: grid; grid-template-columns: repeat(
5
+ auto-fill,
6
+ minmax(280px, 1fr)
7
+ ); gap: 24px; padding: 24px">
8
+ Dashboard Grid
9
+ </div>
10
+ </div>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-divider — requires divider.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-divider">
4
+ <div class="divider" role="separator"></div>
5
+ </div>
@@ -0,0 +1,10 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-divider — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (prefers-reduced-motion: reduce) {
5
+ .arc-divider[data-variant="glow"] .divider::after { animation: none; }
6
+ }
7
+ </style>
8
+ <div class="arc-divider" style="display: block; width: 100%">
9
+ <div class="divider" style="width: 100%; height: 1px" role="separator"></div>
10
+ </div>
@@ -0,0 +1,14 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-empty-state — requires empty-state.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-empty-state">
4
+ <div class="empty" role="status">
5
+ <div class="empty__icon" aria-hidden="true">
6
+
7
+ </div>
8
+ Heading
9
+ Description text goes here
10
+ <div class="empty__actions">
11
+
12
+ </div>
13
+ </div>
14
+ </div>
@@ -0,0 +1,14 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-empty-state — self-contained, no external CSS needed -->
3
+ <div class="arc-empty-state" style="display: block">
4
+ <div style="display: flex; flex-direction: column; align-items: center; text-align: center; padding: 64px 40px; border: 1px dashed rgb(34, 34, 41); border-radius: 14px; background: rgb(13, 13, 18)" role="status">
5
+ <div style="margin-bottom: 24px; color: rgb(107, 107, 128); font-size: 40px" aria-hidden="true">
6
+
7
+ </div>
8
+ Heading
9
+ Description text goes here
10
+ <div style="display: flex; gap: 8px">
11
+
12
+ </div>
13
+ </div>
14
+ </div>
@@ -0,0 +1,12 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-feature-card — requires feature-card.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-feature-card">
4
+ <a class="card" href="#">
5
+ <div class="card__inner">
6
+ <div class="card__icon">★</div>
7
+ <h3 class="card__title">Heading</h3>
8
+ <p class="card__desc">Description text goes here</p>
9
+ <span class="card__rule"></span>
10
+ </div>
11
+ </a>
12
+ </div>
@@ -0,0 +1,25 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-feature-card — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (max-width: 768px) {
5
+ .arc-feature-card .card__inner { padding: 24px 16px; }
6
+ }
7
+ .arc-feature-card .card:hover { background: linear-gradient(135deg, rgba(77, 126, 247,0.3), rgba(139, 92, 246,0.15), rgb(34, 34, 41)); }
8
+ .arc-feature-card .card:hover .card__inner { box-shadow: inset 0 1px 0 rgba(255, 255, 255,0.04), 0 4px 24px rgba(0,0,0,0.2); }
9
+ .arc-feature-card .card:hover .card__icon { border-color: rgba(77, 126, 247,0.3);
10
+ box-shadow: 0 0 20px rgba(77, 126, 247, 0.2), 0 0 6px rgba(77, 126, 247, 0.12);
11
+ transform: translateY(-2px); }
12
+ .arc-feature-card .card:hover .card__title { color: #fff; }
13
+ .arc-feature-card .card:hover .card__rule { opacity: 0.5; width: 48px; }
14
+ .arc-feature-card .card:focus-visible { outline: none; box-shadow: 0 0 0 2px rgb(3, 3, 7), 0 0 0 4px rgb(77, 126, 247), 0 0 16px rgba(77,126,247,0.3); border-radius: 14px; }
15
+ </style>
16
+ <div class="arc-feature-card" style="display: block; height: 100%">
17
+ <a class="card" style="position: relative; border-radius: 14px; height: 100%; padding: 1px; background: rgb(24, 24, 30); text-decoration: none; display: flex; flex-direction: column" href="#">
18
+ <div class="card__inner" style="position: relative; background: rgb(13, 13, 18); border-radius: calc(14px - 1px); padding: 40px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; z-index: 1">
19
+ <div class="card__icon" style="width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(77, 126, 247, 0.06); border: 1px solid rgba(77, 126, 247, 0.12); color: rgb(77, 126, 247); font-size: 20px">★</div>
20
+ <h3 class="card__title" style="font-size: 17px; font-weight: 600; color: rgb(232, 232, 236); margin: 0">Heading</h3>
21
+ <p style="color: rgb(138, 138, 150); font-family: 'Host Grotesk', system-ui, sans-serif; font-size: 14px; line-height: 1.7; flex: 1; margin: 0">Description text goes here</p>
22
+ <span class="card__rule" style="width: 32px; height: 1px; background: linear-gradient(90deg, rgb(77, 126, 247), transparent); opacity: 0"></span>
23
+ </div>
24
+ </a>
25
+ </div>
@@ -0,0 +1,18 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-footer — requires footer.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-footer">
4
+ <footer class="footer">
5
+ <div class="footer__brand">
6
+
7
+ </div>
8
+ <div class="footer__columns">
9
+ Footer
10
+ </div>
11
+ <div class="footer__social">
12
+
13
+ </div>
14
+ <div class="footer__legal">
15
+
16
+ </div>
17
+ </footer>
18
+ </div>
@@ -0,0 +1,18 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-footer — self-contained, no external CSS needed -->
3
+ <div class="arc-footer" style="display: block; background: rgb(3, 3, 7); color: rgb(138, 138, 150); font-family: 'Host Grotesk', system-ui, sans-serif; font-size: clamp(15px, 1.2vw, 16px)">
4
+ <footer style="padding: 64px 40px 40px">
5
+ <div style="margin-bottom: 40px">
6
+
7
+ </div>
8
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; margin-bottom: 40px">
9
+ Footer
10
+ </div>
11
+ <div style="display: flex; align-items: center; gap: 16px; margin-bottom: 24px">
12
+
13
+ </div>
14
+ <div style="padding-top: 16px; border-top: 1px solid rgb(24, 24, 30); color: rgb(124, 124, 137); font-size: 12px">
15
+
16
+ </div>
17
+ </footer>
18
+ </div>
@@ -0,0 +1,86 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>ARC UI — Form (Pure HTML/CSS)</title>
7
+ <link rel="stylesheet" href="../css/form.css" />
8
+ <link rel="stylesheet" href="../../../shared/tokens.css" />
9
+ <style>
10
+ body {
11
+ background: var(--bg-deep);
12
+ color: var(--text-primary);
13
+ font-family: var(--font-body);
14
+ padding: 48px;
15
+ max-width: 480px;
16
+ margin: 0 auto;
17
+ }
18
+ h1 {
19
+ font-family: var(--font-accent);
20
+ font-size: 11px;
21
+ font-weight: 600;
22
+ letter-spacing: 2px;
23
+ text-transform: uppercase;
24
+ color: var(--text-muted);
25
+ margin-bottom: 24px;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body>
30
+ <h1>Contact Form</h1>
31
+
32
+ <form class="arc-form" action="/api/contact" method="POST">
33
+ <div class="arc-field">
34
+ <label for="name">Name</label>
35
+ <input type="text" id="name" name="name" placeholder="Jane Doe" required />
36
+ </div>
37
+
38
+ <div class="arc-field">
39
+ <label for="email">Email</label>
40
+ <input type="email" id="email" name="email" placeholder="jane@example.com" required />
41
+ </div>
42
+
43
+ <div class="arc-field">
44
+ <label for="subject">Subject</label>
45
+ <select id="subject" name="subject">
46
+ <option value="">Select a topic...</option>
47
+ <option value="general">General Inquiry</option>
48
+ <option value="support">Technical Support</option>
49
+ <option value="billing">Billing</option>
50
+ <option value="partnership">Partnership</option>
51
+ </select>
52
+ </div>
53
+
54
+ <div class="arc-field">
55
+ <label for="message">Message</label>
56
+ <textarea id="message" name="message" rows="5" placeholder="How can we help?"></textarea>
57
+ </div>
58
+
59
+ <div class="arc-check">
60
+ <input type="checkbox" id="newsletter" name="newsletter" />
61
+ <label for="newsletter">Subscribe to newsletter</label>
62
+ </div>
63
+
64
+ <fieldset>
65
+ <legend>Priority</legend>
66
+ <div class="arc-check">
67
+ <input type="radio" id="low" name="priority" value="low" />
68
+ <label for="low">Low</label>
69
+ </div>
70
+ <div class="arc-check">
71
+ <input type="radio" id="medium" name="priority" value="medium" checked />
72
+ <label for="medium">Medium</label>
73
+ </div>
74
+ <div class="arc-check">
75
+ <input type="radio" id="high" name="priority" value="high" />
76
+ <label for="high">High</label>
77
+ </div>
78
+ </fieldset>
79
+
80
+ <div class="arc-form-actions">
81
+ <button type="submit">Send Message</button>
82
+ <button type="reset">Reset</button>
83
+ </div>
84
+ </form>
85
+ </body>
86
+ </html>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-highlight — requires highlight.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-highlight">
4
+ <span></span>
5
+ </span>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-highlight — self-contained, no external CSS needed -->
3
+ <span class="arc-highlight" style="display: inline">
4
+ <span></span>
5
+ </span>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-icon-button — requires icon-button.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-icon-button">
4
+ <a href="#" aria-label="Label"></a>
5
+ </span>
@@ -0,0 +1,22 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-icon-button — self-contained, no external CSS needed -->
3
+ <style>
4
+ .arc-icon-button:not([data-variant]) .btn:hover,
5
+ .arc-icon-button[data-variant="ghost"] .btn:hover { color: rgb(232, 232, 236);
6
+ background: rgba(255, 255, 255, 0.05); }
7
+ .arc-icon-button:not([data-variant]) .btn:active,
8
+ .arc-icon-button[data-variant="ghost"] .btn:active { transform: scale(0.93);
9
+ background: rgba(255, 255, 255, 0.08); }
10
+ .arc-icon-button[data-variant="secondary"] .btn:hover { border-color: rgb(77, 126, 247);
11
+ color: rgb(77, 126, 247);
12
+ box-shadow: 0 0 16px rgba(77, 126, 247, 0.15); }
13
+ .arc-icon-button[data-variant="secondary"] .btn:active { transform: scale(0.93);
14
+ background: rgba(77, 126, 247, 0.05); }
15
+ .arc-icon-button[data-variant="primary"] .btn:hover { box-shadow: 0 0 8px rgba(77,126,247,0.9), 0 0 20px rgba(77,126,247,0.5), 0 0 44px rgba(77,126,247,0.25), 0 0 80px rgba(77,126,247,0.1); }
16
+ .arc-icon-button[data-variant="primary"] .btn:active { transform: scale(0.93);
17
+ box-shadow: 0 0 8px rgba(77, 126, 247, 0.5); }
18
+ .arc-icon-button .btn:focus-visible { outline: none; box-shadow: 0 0 0 2px rgb(3, 3, 7), 0 0 0 4px rgb(77, 126, 247), 0 0 16px rgba(77,126,247,0.3); }
19
+ </style>
20
+ <span class="arc-icon-button" style="display: inline-flex">
21
+ <a href="#" aria-label="Label"></a>
22
+ </span>
@@ -0,0 +1,12 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-icon — requires icon.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-icon">
4
+ <span
5
+ class="icon"
6
+ role="presentation"
7
+ aria-label="Label"
8
+ aria-hidden="true"
9
+ >
10
+
11
+ </span>
12
+ </span>
@@ -0,0 +1,12 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-icon — self-contained, no external CSS needed -->
3
+ <span class="arc-icon" style="display: inline-flex; align-items: center; justify-content: center; color: currentColor; vertical-align: middle">
4
+ <span
5
+ style="display: flex; align-items: center; justify-content: center; width: 100%; height: 100%"
6
+ role="presentation"
7
+ aria-label="Label"
8
+ aria-hidden="true"
9
+ >
10
+
11
+ </span>
12
+ </span>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-kbd — requires kbd.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-kbd">
4
+ <kbd class="kbd">Kbd</kbd>
5
+ </span>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-kbd — self-contained, no external CSS needed -->
3
+ <span class="arc-kbd" style="display: inline">
4
+ <kbd style="display: inline-flex; align-items: center; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; line-height: 1; color: rgb(138, 138, 150); background: rgb(17, 17, 22); border: 1px solid rgb(34, 34, 41); border-bottom-width: 2px; border-radius: 4px; padding: 2px 6px; white-space: nowrap; user-select: none; vertical-align: baseline">Kbd</kbd>
5
+ </span>
@@ -0,0 +1,13 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-link — requires link.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-link">
4
+ <a
5
+ class="link"
6
+ href="#"
7
+ target=""
8
+ rel=""
9
+ >
10
+ Link
11
+ External
12
+ </a>
13
+ </span>
@@ -0,0 +1,23 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-link — self-contained, no external CSS needed -->
3
+ <style>
4
+ .arc-link .link:hover { text-decoration: underline;
5
+ text-underline-offset: 3px; }
6
+ .arc-link[data-variant="muted"] .link:hover { color: rgb(232, 232, 236); }
7
+ .arc-link[data-variant="nav"] .link:hover { color: rgb(232, 232, 236);
8
+ text-decoration: none; }
9
+ .arc-link .link:focus-visible { outline: none;
10
+ box-shadow: 0 0 0 2px rgb(3, 3, 7), 0 0 0 4px rgb(77, 126, 247);
11
+ border-radius: 2px; }
12
+ </style>
13
+ <span class="arc-link" style="display: inline">
14
+ <a
15
+ class="link" style="font-family: 'Host Grotesk', system-ui, sans-serif; font-size: inherit; color: rgb(77, 126, 247); text-decoration: none; cursor: pointer; border: none; background: none; padding: 0"
16
+ href="#"
17
+ target=""
18
+ rel=""
19
+ >
20
+ Link
21
+ External
22
+ </a>
23
+ </span>
@@ -0,0 +1,6 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-markdown — requires markdown.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-markdown">
4
+ <div class="markdown" ></div>
5
+ <slot style="display:none" ></slot>
6
+ </div>
@@ -0,0 +1,16 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-markdown — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (prefers-reduced-motion: reduce) {
5
+ .arc-markdown *,
6
+ .arc-markdown *::before,
7
+ .arc-markdown *::after { animation-duration: 0.01ms !important;
8
+ animation-iteration-count: 1 !important;
9
+ transition-duration: 0.01ms !important; }
10
+ }
11
+ .arc-markdown .markdown a:hover { text-decoration: underline; }
12
+ </style>
13
+ <div class="arc-markdown" style="display: block">
14
+ <div class="markdown" style="font-family: 'Host Grotesk', system-ui, sans-serif; font-size: 15px; font-weight: 500; line-height: 1.7; color: rgb(160, 165, 195)" ></div>
15
+ <slot style="display:none" ></slot>
16
+ </div>
@@ -0,0 +1,20 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-meter — requires meter.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-meter">
4
+ <div
5
+ class="meter"
6
+ role="meter"
7
+ aria-valuemin="Min"
8
+ aria-valuemax="Max"
9
+ aria-valuenow="Value"
10
+ aria-label="Label"
11
+ >
12
+ Label
13
+ <div class="meter__track">
14
+ <div
15
+ class="meter__fill meter__fill--"
16
+ style="width: %"
17
+ ></div>
18
+ </div>
19
+ </div>
20
+ </div>
@@ -0,0 +1,29 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-meter — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (prefers-reduced-motion: reduce) {
5
+ .arc-meter *,
6
+ .arc-meter *::before,
7
+ .arc-meter *::after { animation-duration: 0.01ms !important;
8
+ animation-iteration-count: 1 !important;
9
+ transition-duration: 0.01ms !important; }
10
+ }
11
+ </style>
12
+ <div class="arc-meter" style="display: block">
13
+ <div
14
+ style="display: flex; flex-direction: column; gap: 4px"
15
+ role="meter"
16
+ aria-valuemin="Min"
17
+ aria-valuemax="Max"
18
+ aria-valuenow="Value"
19
+ aria-label="Label"
20
+ >
21
+ Label
22
+ <div style="position: relative; width: 100%; height: 8px; background: rgb(26, 26, 80); border-radius: 9999px; overflow: hidden">
23
+ <div
24
+
25
+ style="width: %"
26
+ ></div>
27
+ </div>
28
+ </div>
29
+ </div>
@@ -0,0 +1,22 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-page-header — requires page-header.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-page-header">
4
+ <div class="page-header">
5
+ <div class="page-header__breadcrumb">
6
+
7
+ </div>
8
+ <div class="page-header__title-row">
9
+ <h1 class="page-header__heading">Heading</h1>
10
+ <div class="page-header__actions">
11
+
12
+ </div>
13
+ </div>
14
+ Description text goes here
15
+ <div class="page-header__tabs">
16
+
17
+ </div>
18
+ <div class="page-header__content">
19
+ Page Header
20
+ </div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,22 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-page-header — self-contained, no external CSS needed -->
3
+ <div class="arc-page-header" style="display: block; font-family: 'Host Grotesk', system-ui, sans-serif">
4
+ <div style="padding: 24px 0 16px; border-bottom: 1px solid rgb(24, 24, 30)">
5
+ <div style="margin-bottom: 8px">
6
+
7
+ </div>
8
+ <div style="display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap">
9
+ <h1 style="margin: 0; font-family: 'Tektur', system-ui, sans-serif; font-size: 28px; font-weight: 700; color: rgb(232, 232, 236); line-height: 1.2">Heading</h1>
10
+ <div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
11
+
12
+ </div>
13
+ </div>
14
+ Description text goes here
15
+ <div style="margin-top: 16px">
16
+
17
+ </div>
18
+ <div style="margin-top: 16px">
19
+ Page Header
20
+ </div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-page-layout — requires page-layout.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-page-layout">
4
+ <div class="page-layout">
5
+ <div class="sidebar">
6
+
7
+ </div>
8
+ <div class="main">
9
+ Page Layout
10
+ </div>
11
+ <div class="aside">
12
+
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,21 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-page-layout — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (max-width: 768px) {
5
+ .arc-page-layout([layout='sidebar-left']) .page-layout,
6
+ .arc-page-layout([layout='sidebar-right']) .page-layout { grid-template-columns: 1fr; }
7
+ }
8
+ </style>
9
+ <div class="arc-page-layout" style="display: block; box-sizing: border-box">
10
+ <div class="page-layout" style="padding: 40px 24px; gap: var(--gap); min-height: 100%; box-sizing: border-box">
11
+ <div style="display: none">
12
+
13
+ </div>
14
+ <div style="min-width: 0">
15
+ Page Layout
16
+ </div>
17
+ <div style="display: none">
18
+
19
+ </div>
20
+ </div>
21
+ </div>
@@ -0,0 +1,20 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-progress — requires progress.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-progress">
4
+ <div>
5
+ Label
6
+ <div
7
+ class="progress__spinner"
8
+ role="progressbar"
9
+ aria-valuenow="Indeterminate"
10
+ aria-valuemin="0"
11
+ aria-valuemax="100"
12
+ aria-label="Label"
13
+ >
14
+ <svg viewBox="0 0 44 44">
15
+ <circle class="progress__spinner-track" cx="22" cy="22" r="20"></circle>
16
+ <circle class="progress__spinner-fill" cx="22" cy="22" r="20"></circle>
17
+ </svg>
18
+ </div>
19
+ </div>
20
+ </div>
@@ -0,0 +1,27 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-progress — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (prefers-reduced-motion: reduce) {
5
+ .arc-progress .progress__fill,
6
+ .arc-progress .progress__spinner svg,
7
+ .arc-progress .progress__spinner-fill { animation: none; }
8
+ }
9
+ </style>
10
+ <div class="arc-progress" style="display: block">
11
+ <div>
12
+ Label
13
+ <div
14
+ class="progress__spinner" style="display: inline-block"
15
+ role="progressbar"
16
+ aria-valuenow="Indeterminate"
17
+ aria-valuemin="0"
18
+ aria-valuemax="100"
19
+ aria-label="Label"
20
+ >
21
+ <svg viewBox="0 0 44 44">
22
+ <circle style="fill: none; stroke: rgb(24, 24, 30); stroke-width: 3" cx="22" cy="22" r="20"></circle>
23
+ <circle class="progress__spinner-fill" style="fill: none; stroke: rgb(77, 126, 247); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 80, 200; stroke-dashoffset: 0; animation: spinner-dash 1.4s ease-in-out infinite" cx="22" cy="22" r="20"></circle>
24
+ </svg>
25
+ </div>
26
+ </div>
27
+ </div>
@@ -0,0 +1,12 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-scroll-area — requires scroll-area.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-scroll-area">
4
+ <div
5
+ class="scroll-area"
6
+ tabindex="0"
7
+ role="region"
8
+ aria-label="Scrollable content"
9
+ >
10
+ Scroll Area
11
+ </div>
12
+ </div>