@velora-cms/design-tokens 0.9.0 → 0.9.1

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.
@@ -1,7 +1,6 @@
1
1
  import type { BuiltInTheme } from '../theme-types.js';
2
2
  /**
3
- * Dark theme overrides, per the Theme System section of
4
- * PROJECT_CONTEXT.md. Every value here is drawn from tokens the base
3
+ * Dark theme overrides. Every value here is drawn from tokens the base
5
4
  * set already declares — no new colors invented outside the
6
5
  * VeloraDesignTokens shape. The background/text/border remaps make
7
6
  * #0F1117 (the brand dark bg reserved for this theme since Session 25)
@@ -1,6 +1,5 @@
1
1
  /**
2
- * Dark theme overrides, per the Theme System section of
3
- * PROJECT_CONTEXT.md. Every value here is drawn from tokens the base
2
+ * Dark theme overrides. Every value here is drawn from tokens the base
4
3
  * set already declares — no new colors invented outside the
5
4
  * VeloraDesignTokens shape. The background/text/border remaps make
6
5
  * #0F1117 (the brand dark bg reserved for this theme since Session 25)
package/dist/tokens.d.ts CHANGED
@@ -2,7 +2,7 @@ import type { VeloraDesignTokens } from './types.js';
2
2
  /**
3
3
  * Velora brand tokens — the default (light) token set.
4
4
  *
5
- * Brand anchors from docs/PROJECT_CONTEXT.md UI & Design System:
5
+ * Brand anchors, per the UI & Design System plan:
6
6
  * every brand color is the 500 step of its scale (indigo #6366F1,
7
7
  * violet #8B5CF6, emerald #10B981, amber #F59E0B, red #EF4444), and
8
8
  * the light background #F9FAFB is neutral.50. The dark background
package/dist/tokens.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Velora brand tokens — the default (light) token set.
3
3
  *
4
- * Brand anchors from docs/PROJECT_CONTEXT.md UI & Design System:
4
+ * Brand anchors, per the UI & Design System plan:
5
5
  * every brand color is the 500 step of its scale (indigo #6366F1,
6
6
  * violet #8B5CF6, emerald #10B981, amber #F59E0B, red #EF4444), and
7
7
  * the light background #F9FAFB is neutral.50. The dark background
package/dist/types.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Design token type definitions — the shape every theme (built-in or
3
- * plugin) targets. See docs/PROJECT_CONTEXT.md → Design Tokens.
3
+ * plugin) targets.
4
4
  */
5
5
  export type ColorScaleStep = '50' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | '950';
6
6
  export type ColorScale = Record<ColorScaleStep, string>;
package/dist/types.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Design token type definitions — the shape every theme (built-in or
3
- * plugin) targets. See docs/PROJECT_CONTEXT.md → Design Tokens.
3
+ * plugin) targets.
4
4
  */
5
5
  export {};
package/package.json CHANGED
@@ -1,7 +1,14 @@
1
1
  {
2
2
  "name": "@velora-cms/design-tokens",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "license": "Apache-2.0",
5
+ "description": "Velora's design token source, generating the Tailwind config and CSS variables consumed by the UI library, admin UI, and plugin UIs.",
6
+ "engines": {
7
+ "node": ">=22.12"
8
+ },
9
+ "bugs": {
10
+ "url": "https://github.com/velora-cms/velora/issues"
11
+ },
5
12
  "type": "module",
6
13
  "main": "dist/index.js",
7
14
  "types": "dist/index.d.ts",