margo-ui 3.0.0 → 3.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "margo-ui",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "React UI kit built on Tailwind CSS v4 design tokens, themeable through plain CSS custom properties.",
5
5
  "keywords": [
6
6
  "react",
@@ -2,7 +2,7 @@ export const tableWrapperClassName = "w-full overflow-x-auto overscroll-x-none r
2
2
 
3
3
  export const tableBaseClassName = "w-full border-collapse text-xs text-on-main";
4
4
 
5
- export const tableHeadClassName = "border-b-2 border-border bg-neutral/40 text-left";
5
+ export const tableHeadClassName = "border-b-2 border-border bg-low text-left";
6
6
 
7
7
  export const tableBodyClassName = "align-top";
8
8
 
@@ -52,12 +52,12 @@
52
52
 
53
53
  --margo-color-neutral: #ffffff;
54
54
  --margo-color-on-neutral: #000000;
55
- --margo-color-main: #edecec;
55
+ --margo-color-main: #f3f3f3;
56
56
  --margo-color-on-main: #151515;
57
57
  --margo-color-primary: #57e550;
58
58
  --margo-color-primary-darken: #45b93f;
59
- --margo-color-low: color-mix(in srgb, var(--margo-color-on-main) 4%, var(--margo-color-main));
60
- --margo-color-low-alpha: color-mix(in srgb, var(--margo-color-on-main) 4%, transparent);
59
+ --margo-color-low: color-mix(in srgb, var(--margo-color-on-main) 3.5%, var(--margo-color-main));
60
+ --margo-color-low-alpha: color-mix(in srgb, var(--margo-color-on-main) 3.5%, transparent);
61
61
  --margo-color-medium: #808080;
62
62
  --margo-color-border: #cecece;
63
63
 
@@ -73,7 +73,7 @@
73
73
  --margo-color-neutral: #000000;
74
74
  --margo-color-on-neutral: #ffffff;
75
75
  --margo-color-main: #151515;
76
- --margo-color-on-main: #eeeeee;
76
+ --margo-color-on-main: #f3f3f3;
77
77
  --margo-color-primary: #57e550;
78
78
  --margo-color-primary-darken: #45b93f;
79
79
  --margo-color-low: color-mix(in srgb, var(--margo-color-on-main) 2.5%, var(--margo-color-main));