@adam-milo/tokens 1.0.48 → 1.0.51

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @adam-milo/tokens
2
2
 
3
- Design tokens for the Adam Milo Design System (Smart V2).
3
+ Design tokens for the Adam Milo Design System (Smart V2). Single source of truth for colors, spacing, and typography across packages.
4
4
 
5
5
  ## Installation
6
6
 
package/dist/index.d.mts CHANGED
@@ -2,6 +2,12 @@ export { Colors, Gradients, LegacyColors, colors, gradients, legacyColors } from
2
2
  export { BorderRadius, BorderWidth, Spacing, borderRadius, borderWidth, spacing } from './spacing.mjs';
3
3
  export { FontFamily, FontSize, fontFamily, fontSize } from './typography.mjs';
4
4
 
5
+ /**
6
+ * @adam-milo/tokens
7
+ * Design tokens (colors, spacing, typography) for the Adam Milo Design System.
8
+ * Single source of truth for the design system.
9
+ */
10
+
5
11
  declare const tokens: {
6
12
  readonly colors: {
7
13
  readonly text: "#191A39";
package/dist/index.d.ts CHANGED
@@ -2,6 +2,12 @@ export { Colors, Gradients, LegacyColors, colors, gradients, legacyColors } from
2
2
  export { BorderRadius, BorderWidth, Spacing, borderRadius, borderWidth, spacing } from './spacing.js';
3
3
  export { FontFamily, FontSize, fontFamily, fontSize } from './typography.js';
4
4
 
5
+ /**
6
+ * @adam-milo/tokens
7
+ * Design tokens (colors, spacing, typography) for the Adam Milo Design System.
8
+ * Single source of truth for the design system.
9
+ */
10
+
5
11
  declare const tokens: {
6
12
  readonly colors: {
7
13
  readonly text: "#191A39";
package/dist/tokens.css CHANGED
@@ -110,19 +110,27 @@
110
110
  rgba(50, 156, 178, 0.18) 100%
111
111
  );
112
112
 
113
+ /* Mobile/tablet: very subtle blue from top-right and bottom-right only; center and left stay white */
114
+ --gradient-auth-bg-mobile:
115
+ radial-gradient(160% 100% at 100% 0%, rgba(50, 156, 178, 0) 45%, rgba(50, 156, 178, 0.14) 100%),
116
+ radial-gradient(
117
+ 160% 100% at 100% 100%,
118
+ rgba(50, 156, 178, 0) 45%,
119
+ rgba(50, 156, 178, 0.14) 100%
120
+ );
121
+
122
+ /* Desktop: pale blue-grey from left and right edges only; center is bright white */
113
123
  --gradient-auth-bg:
114
124
  linear-gradient(
115
125
  to right,
116
- rgba(50, 156, 178, 0.09) 0%,
117
- rgba(50, 156, 178, 0.06) 25%,
118
- rgba(50, 156, 178, 0.03) 45%,
119
- rgba(50, 156, 178, 0) 50%
126
+ rgba(50, 156, 178, 0.07) 0%,
127
+ rgba(50, 156, 178, 0.03) 18%,
128
+ rgba(50, 156, 178, 0) 38%
120
129
  ),
121
130
  linear-gradient(
122
131
  to left,
123
- rgba(50, 156, 178, 0.09) 0%,
124
- rgba(50, 156, 178, 0.06) 25%,
125
- rgba(50, 156, 178, 0.03) 45%,
126
- rgba(50, 156, 178, 0) 50%
132
+ rgba(50, 156, 178, 0.07) 0%,
133
+ rgba(50, 156, 178, 0.03) 18%,
134
+ rgba(50, 156, 178, 0) 38%
127
135
  );
128
136
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adam-milo/tokens",
3
- "version": "1.0.48",
3
+ "version": "1.0.51",
4
4
  "description": "Design tokens for the Adam Milo Design System",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",