@owomark/processor 0.1.5 → 0.1.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owomark/processor",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Node-safe Markdown and MDX processor, plugins, and built-in MDX components for OwoMark.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -54,6 +54,30 @@
54
54
  }
55
55
  .mdx-callout-success .mdx-callout-icon { background-color: var(--owo-success, #22c55e); color: white; }
56
56
 
57
+ /* --- Note --- */
58
+
59
+ .mdx-note {
60
+ margin-bottom: 1.25rem;
61
+ padding: 0.875rem 1rem;
62
+ border: 1px solid color-mix(in srgb, var(--owo-border, #e2e8f0) 90%, white);
63
+ border-radius: 10px;
64
+ background:
65
+ linear-gradient(180deg, color-mix(in srgb, var(--owo-surface-raised, #f8fafc) 82%, white), color-mix(in srgb, var(--owo-surface, #ffffff) 96%, white));
66
+ color: var(--owo-text, #1e293b);
67
+ }
68
+
69
+ .mdx-note-title {
70
+ margin: 0 0 0.45rem;
71
+ font-size: 0.8rem;
72
+ line-height: 1.3;
73
+ font-weight: 700;
74
+ letter-spacing: 0.02em;
75
+ color: var(--owo-text-muted, #64748b);
76
+ }
77
+
78
+ .mdx-note-body > :first-child { margin-top: 0; }
79
+ .mdx-note-body > :last-child { margin-bottom: 0; }
80
+
57
81
  /* --- CodeDemo --- */
58
82
 
59
83
  .mdx-code-demo { margin-bottom: 1.5rem; }