lutra 0.1.16 → 0.1.18

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.
@@ -83,7 +83,7 @@
83
83
 
84
84
  /* List item spacing */
85
85
  li {
86
- margin-block-end: var(--space-xxs);
86
+ margin-block-end: var(--space-xs);
87
87
 
88
88
  &:last-child {
89
89
  margin-block-end: 0;
@@ -91,7 +91,7 @@
91
91
 
92
92
  /* List items containing only text get tighter spacing */
93
93
  &:not(:has(:is(p, ul, ol, blockquote, pre))) {
94
- margin-block-end: var(--space-xxs);
94
+ margin-block-end: var(--space-xs);
95
95
  }
96
96
  }
97
97
 
@@ -16,14 +16,14 @@
16
16
 
17
17
  /* Very subtle, near-white surface (code, table headers) */
18
18
  --theme-surface-subtlest: light-dark(
19
- oklch(from var(--lutra-primary-color) calc(l * 1.92) calc(c * 0.02) h),
20
- oklch(from var(--lutra-primary-color) calc(l * 0.6) calc(c * 0.02) h)
19
+ oklch(from var(--lutra-primary-color) calc(l * 1.93) calc(c * 0.025) h),
20
+ oklch(from var(--lutra-primary-color) calc(l * 0.55) calc(c * 0.025) h)
21
21
  );
22
22
 
23
23
  /* Subtle surface for slight differentiation */
24
24
  --theme-surface-subtle: light-dark(
25
- oklch(from var(--lutra-primary-color) calc(l * 1.96) calc(c * 0.01) h),
26
- oklch(from var(--lutra-primary-color) calc(l * 0.65) calc(c * 0.01) h)
25
+ oklch(from var(--lutra-primary-color) calc(l * 1.9) calc(c * 0.025) h),
26
+ oklch(from var(--lutra-primary-color) calc(l * 0.6) calc(c * 0.025) h)
27
27
  );
28
28
 
29
29
  /* Interactive surface (hover states) */
@@ -227,10 +227,10 @@
227
227
  */
228
228
 
229
229
  --table-border-color: var(--border-color);
230
- --table-header-background: var(--theme-surface-subtlest);
230
+ --table-header-background: var(--theme-surface-subtle);
231
231
  --table-header-color: var(--text-color-heading);
232
232
  --table-row-background: transparent;
233
- --table-row-background-even: color-mix(in srgb, var(--theme-surface-subtle) 50%, transparent);
233
+ --table-row-background-even: transparent;
234
234
  --table-row-background-hover: color-mix(in srgb, var(--theme-surface-interactive) 60%, transparent);
235
235
  --table-cell-color: var(--text-color-p);
236
236
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lutra",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",