@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,22 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-scroll-area — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (prefers-reduced-motion: reduce) {
5
+ .arc-scroll-area *,
6
+ .arc-scroll-area *::before,
7
+ .arc-scroll-area *::after { animation-duration: 0.01ms !important;
8
+ animation-iteration-count: 1 !important;
9
+ transition-duration: 0.01ms !important; }
10
+ }
11
+ .arc-scroll-area .scroll-area::-webkit-scrollbar-thumb:hover { background: rgb(110, 115, 155); }
12
+ </style>
13
+ <div class="arc-scroll-area" style="display: block; position: relative">
14
+ <div
15
+ class="scroll-area" style="overflow: hidden; scroll-behavior: smooth; border-radius: var(--radius-full); width: 6px; height: 6px; background: var(--bg-elevated); scrollbar-width: thin; scrollbar-color: var(--border-bright) var(--bg-elevated)"
16
+ tabindex="0"
17
+ role="region"
18
+ aria-label="Scrollable content"
19
+ >
20
+ Scroll Area
21
+ </div>
22
+ </div>
@@ -0,0 +1,8 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-section — requires section.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-section">
4
+ <section class="section">
5
+ Label
6
+ Section
7
+ </section>
8
+ </div>
@@ -0,0 +1,13 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-section — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (max-width: 768px) {
5
+ .arc-section .section { padding: 64px 16px; }
6
+ }
7
+ </style>
8
+ <div class="arc-section" style="display: block">
9
+ <section class="section" style="width: 100%; max-width: 1120px; margin-inline: auto; padding: 96px 24px; scroll-margin-top: 16px">
10
+ Label
11
+ Section
12
+ </section>
13
+ </div>
@@ -0,0 +1,12 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-settings-layout — requires settings-layout.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-settings-layout">
4
+ <div>
5
+ <div class="nav">
6
+
7
+ </div>
8
+ <div class="content">
9
+ Settings Layout
10
+ </div>
11
+ </div>
12
+ </div>
@@ -0,0 +1,22 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-settings-layout — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (max-width: 768px) {
5
+ .arc-settings-layout .settings-layout--left { display: flex;
6
+ flex-direction: column; }
7
+ }
8
+ @media (max-width: 768px) {
9
+ .arc-settings-layout .settings-layout--left .nav { border-right: none;
10
+ border-bottom: 1px solid rgb(24, 24, 30); }
11
+ }
12
+ </style>
13
+ <div class="arc-settings-layout" style="display: block; box-sizing: border-box">
14
+ <div>
15
+ <div class="nav" style="padding: 24px; background: rgb(13, 13, 18); border-right: 1px solid rgb(24, 24, 30); border-bottom: 1px solid rgb(24, 24, 30)">
16
+
17
+ </div>
18
+ <div style="padding: 40px; flex: 1">
19
+ Settings Layout
20
+ </div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,10 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-skeleton — requires skeleton.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-skeleton">
4
+ <div
5
+ class="skeleton"
6
+ role="status"
7
+ aria-label="Loading"
8
+ aria-busy="true"
9
+ ></div>
10
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-skeleton — self-contained, no external CSS needed -->
3
+ <div class="arc-skeleton" style="display: block">
4
+ <div
5
+ style="background: linear-gradient(
6
+ 90deg,
7
+ rgb(17, 17, 22) 25%,
8
+ rgb(24, 24, 30) 37%,
9
+ rgb(17, 17, 22) 63%
10
+ ); background-size: 200% 100%; animation: shimmer 1.8s ease-in-out infinite"
11
+ role="status"
12
+ aria-label="Loading"
13
+ aria-busy="true"
14
+ ></div>
15
+ </div>
@@ -0,0 +1,9 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-spinner — requires spinner.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-spinner">
4
+ <div
5
+ class="spinner"
6
+ role="status"
7
+ aria-label="Loading"
8
+ ></div>
9
+ </span>
@@ -0,0 +1,9 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-spinner — self-contained, no external CSS needed -->
3
+ <span class="arc-spinner" style="display: inline-flex">
4
+ <div
5
+ style="border-radius: 9999px; border-style: solid; border-color: rgb(77, 126, 247); border-top-color: transparent; animation: spin 0.75s linear infinite; box-sizing: border-box"
6
+ role="status"
7
+ aria-label="Loading"
8
+ ></div>
9
+ </span>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-stack — requires stack.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-stack">
4
+ Stack
5
+ </div>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclux/prism — do not edit manually -->
2
+ <!-- arc-stack — self-contained, no external CSS needed -->
3
+ <div class="arc-stack" style="display: flex; flex-direction: column; gap: 16px; align-items: stretch; justify-content: flex-start">
4
+ Stack
5
+ </div>
@@ -0,0 +1,9 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-stat — requires stat.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-stat">
4
+ <div class="stat">
5
+ <span class="stat__value">Value</span>
6
+ <span class="stat__rule"></span>
7
+ <span class="stat__label">Label</span>
8
+ </div>
9
+ </div>
@@ -0,0 +1,10 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-stat — self-contained, no external CSS needed -->
3
+ <div class="arc-stat" style="display: block">
4
+ <div style="display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 24px 16px">
5
+ <span style="font-size: clamp(32px, 4.5vw, 48px); font-weight: 200; letter-spacing: -1px; line-height: 1; background: linear-gradient(90deg, rgb(77, 126, 247), rgb(139, 92, 246)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 16px rgba(77, 126, 247,0.3))
6
+ drop-shadow(0 0 40px rgba(139, 92, 246,0.12))">Value</span>
7
+ <span style="width: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgb(77, 126, 247), transparent); opacity: 0.4"></span>
8
+ <span style="font-family: 'Tektur', system-ui, sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgb(124, 124, 137)">Label</span>
9
+ </div>
10
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-status-bar — requires status-bar.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-status-bar">
4
+ <div class="status-bar" role="status">
5
+ <div class="status-bar__left">
6
+
7
+ </div>
8
+ <div class="status-bar__center">
9
+ Status Bar
10
+ </div>
11
+ <div class="status-bar__right">
12
+
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-status-bar — self-contained, no external CSS needed -->
3
+ <div class="arc-status-bar" style="display: block; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: rgb(124, 124, 137)">
4
+ <div style="display: flex; align-items: center; height: 28px; padding: 0 8px; background: rgb(3, 3, 7); border-top: 1px solid rgb(24, 24, 30); gap: 8px" role="status">
5
+ <div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
6
+
7
+ </div>
8
+ <div style="display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center">
9
+ Status Bar
10
+ </div>
11
+ <div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto">
12
+
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,18 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-stepper — requires stepper.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-stepper">
4
+ <div
5
+ class="step step--"
6
+ role="listitem"
7
+ aria-current=""
8
+ >
9
+ <div class="step__header">
10
+
11
+ <span class="step__circle">
12
+
13
+ </span>
14
+
15
+ </div>
16
+ <span class="step__label"></span>
17
+ </div>
18
+ </div>
@@ -0,0 +1,18 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-stepper — self-contained, no external CSS needed -->
3
+ <div class="arc-stepper" style="display: block">
4
+ <div
5
+
6
+ role="listitem"
7
+ aria-current=""
8
+ >
9
+ <div style="display: flex; align-items: center; width: 100%; position: relative">
10
+
11
+ <span style="width: 32px; height: 32px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-family: 'Tektur', system-ui, sans-serif; font-size: 13px; font-weight: 600; flex-shrink: 0; position: relative; z-index: 1; margin: 0 auto; box-sizing: border-box; background: rgb(77, 126, 247); color: rgb(232, 232, 236); border: 2px solid rgb(77, 126, 247); box-shadow: 0 0 12px rgba(77, 126, 247, 0.25)">
12
+
13
+ </span>
14
+
15
+ </div>
16
+ <span style="margin-top: 8px; font-family: 'Host Grotesk', system-ui, sans-serif; font-size: 13px; color: rgb(138, 138, 150); text-align: center; font-weight: 600"></span>
17
+ </div>
18
+ </div>
@@ -0,0 +1,7 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-table — requires table.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-table">
4
+ <div class="table-wrap">
5
+ Table
6
+ </div>
7
+ </div>
@@ -0,0 +1,7 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-table — self-contained, no external CSS needed -->
3
+ <div class="arc-table" style="display: block; color: rgb(138, 138, 150); font-family: 'Host Grotesk', system-ui, sans-serif; font-size: clamp(15px, 1.2vw, 16px)">
4
+ <div style="overflow-x: auto; border: 1px solid rgb(34, 34, 41); border-radius: 14px">
5
+ Table
6
+ </div>
7
+ </div>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-text — requires text.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-text">
4
+ <p class="text--Variant">Text</p>
5
+ </div>
@@ -0,0 +1,5 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-text — self-contained, no external CSS needed -->
3
+ <div class="arc-text" style="display: block">
4
+ <p>Text</p>
5
+ </div>
@@ -0,0 +1,10 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-timeline — requires timeline.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-timeline">
4
+ <div class="timeline__slot-host">
5
+ Timeline
6
+ </div>
7
+ <ol class="timeline" role="list">
8
+ _items
9
+ </ol>
10
+ </div>
@@ -0,0 +1,10 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-timeline — self-contained, no external CSS needed -->
3
+ <div class="arc-timeline" style="display: block">
4
+ <div style="display: none">
5
+ Timeline
6
+ </div>
7
+ <ol style="display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; list-style: none" role="list">
8
+ _items
9
+ </ol>
10
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-toolbar — requires toolbar.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-toolbar">
4
+ <div class="toolbar" role="toolbar">
5
+ <div class="toolbar__start">
6
+
7
+ </div>
8
+ <div class="toolbar__center">
9
+ Toolbar
10
+ </div>
11
+ <div class="toolbar__end">
12
+
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-toolbar — self-contained, no external CSS needed -->
3
+ <div class="arc-toolbar" style="display: block; font-family: 'Host Grotesk', system-ui, sans-serif">
4
+ <div style="display: flex; align-items: center; height: 48px; padding: 0 16px; background: rgb(13, 13, 18); gap: 8px" role="toolbar">
5
+ <div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
6
+
7
+ </div>
8
+ <div style="display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center">
9
+ Toolbar
10
+ </div>
11
+ <div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto">
12
+
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,19 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-tooltip — requires tooltip.css + tokens.css (or arc-ui.css) -->
3
+ <span class="arc-tooltip">
4
+ <div
5
+ class="tooltip__trigger"
6
+
7
+ aria-describedby="_tooltip Id"
8
+ >
9
+ Tooltip
10
+ </div>
11
+ <div
12
+ class="tooltip__popup _visible"
13
+ role="tooltip"
14
+ id="_tooltip Id"
15
+ >
16
+ Content goes here
17
+ <div class="tooltip__arrow"></div>
18
+ </div>
19
+ </span>
@@ -0,0 +1,19 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-tooltip — self-contained, no external CSS needed -->
3
+ <span class="arc-tooltip" style="display: inline-block; position: relative">
4
+ <div
5
+ style="display: inline-block"
6
+
7
+ aria-describedby="_tooltip Id"
8
+ >
9
+ Tooltip
10
+ </div>
11
+ <div
12
+
13
+ role="tooltip"
14
+ id="_tooltip Id"
15
+ >
16
+ Content goes here
17
+ <div style="position: absolute; width: 8px; height: 8px; background: rgb(17, 17, 22); border: 1px solid rgb(34, 34, 41); transform: rotate(45deg)"></div>
18
+ </div>
19
+ </span>
@@ -0,0 +1,23 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-top-bar — requires top-bar.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-top-bar">
4
+ <header class="topbar">
5
+ <button class="topbar__menu-btn" aria-label="Toggle menu" aria-expanded="false">
6
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor">
7
+ <rect y="3" width="20" height="2" rx="1"/>
8
+ <rect y="9" width="20" height="2" rx="1"/>
9
+ <rect y="15" width="20" height="2" rx="1"/>
10
+ </svg>
11
+ </button>
12
+ <a class="topbar__brand" href="/">
13
+
14
+ Heading
15
+ </a>
16
+ <div class="topbar__center">
17
+
18
+ </div>
19
+ <div class="topbar__actions">
20
+
21
+ </div>
22
+ </header>
23
+ </div>
@@ -0,0 +1,29 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-top-bar — self-contained, no external CSS needed -->
3
+ <style>
4
+ @media (max-width: 768px) {
5
+ .arc-top-bar .topbar__menu-btn { display: flex; }
6
+ }
7
+ .arc-top-bar .topbar__menu-btn:hover { background: rgba(255, 255, 255, 0.05); }
8
+ </style>
9
+ <div class="arc-top-bar" style="display: block; width: 100%; z-index: 100">
10
+ <header class="topbar" style="display: flex; align-items: center; height: 64px; padding: 0 24px; background: rgb(3, 3, 7); border-bottom: 1px solid rgb(24, 24, 30); gap: 16px">
11
+ <button class="topbar__menu-btn" style="display: none; background: none; border: none; color: rgb(232, 232, 236); cursor: pointer; padding: 4px; border-radius: 4px" aria-label="Toggle menu" aria-expanded="false">
12
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor">
13
+ <rect y="3" width="20" height="2" rx="1"/>
14
+ <rect y="9" width="20" height="2" rx="1"/>
15
+ <rect y="15" width="20" height="2" rx="1"/>
16
+ </svg>
17
+ </button>
18
+ <a style="display: flex; align-items: center; gap: 8px; font-family: 'Tektur', system-ui, sans-serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; letter-spacing: clamp(8px, 1.2vw, 14px); text-transform: uppercase; color: rgb(232, 232, 236); text-decoration: none; flex-shrink: 0" href="/">
19
+
20
+ Heading
21
+ </a>
22
+ <div style="flex: 1; display: flex; align-items: center; justify-content: center">
23
+
24
+ </div>
25
+ <div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
26
+
27
+ </div>
28
+ </header>
29
+ </div>
@@ -0,0 +1,11 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-value-card — requires value-card.css + tokens.css (or arc-ui.css) -->
3
+ <div class="arc-value-card">
4
+ <div class="card">
5
+ <div class="card__icon">★</div>
6
+ <div class="card__text">
7
+ <h3 class="card__title">Heading</h3>
8
+ <p class="card__desc">Description text goes here</p>
9
+ </div>
10
+ </div>
11
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- Auto-generated by @arclight/prism — do not edit manually -->
2
+ <!-- arc-value-card — self-contained, no external CSS needed -->
3
+ <style>
4
+ .arc-value-card .card:hover { border-color: rgb(51, 51, 64);
5
+ box-shadow: 0 0 20px rgba(139, 92, 246,0.06); }
6
+ </style>
7
+ <div class="arc-value-card" style="display: flex; flex-direction: column; height: 100%">
8
+ <div class="card" style="position: relative; display: flex; align-items: flex-start; gap: 24px; padding: 24px; flex: 1; border: 1px solid rgb(24, 24, 30); border-radius: 14px">
9
+ <div style="flex-shrink: 0; color: rgb(139, 92, 246); font-size: 24px; line-height: 1; padding-top: 2px">★</div>
10
+ <div style="display: flex; flex-direction: column; gap: 8px">
11
+ <h3 style="font-size: 17px; font-weight: 600; color: rgb(232, 232, 236); margin: 0">Heading</h3>
12
+ <p style="color: rgb(138, 138, 150); font-family: 'Host Grotesk', system-ui, sans-serif; font-size: 14px; line-height: 1.7; margin: 0">Description text goes here</p>
13
+ </div>
14
+ </div>
15
+ </div>
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@arclux/arc-ui-html",
3
+ "version": "1.0.0",
4
+ "description": "ARC UI — Standalone CSS and HTML examples for vanilla projects. Auto-generated by @arclux/prism.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "files": [
8
+ "css/",
9
+ "examples/"
10
+ ],
11
+ "exports": {
12
+ "./css/*": "./css/*",
13
+ "./examples/*": "./examples/*"
14
+ },
15
+ "keywords": [
16
+ "arc-ui",
17
+ "css",
18
+ "design-system",
19
+ "html",
20
+ "components"
21
+ ],
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/arclight-digital/arc-ui",
25
+ "directory": "packages/html"
26
+ },
27
+ "homepage": "https://arcui.dev",
28
+ "bugs": {
29
+ "url": "https://github.com/arclight-digital/arc-ui/issues"
30
+ }
31
+ }