lucentia-ui 0.2.20 → 0.2.22

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright 2026 Lucentia UI
3
+ Copyright 2026 Rikiya Matsuda
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { ThemeProvider } from "./components/ThemeProvider";
2
+ export { useTheme } from "./components/ThemeProvider";
2
3
  export type { Theme } from "./components/ThemeProvider";
3
4
  export * from "./components/Button";
4
5
  export * from "./components/Checkbox";
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  /* ===== Theme ===== */
2
2
  export { ThemeProvider } from "./components/ThemeProvider";
3
+ export { useTheme } from "./components/ThemeProvider";
3
4
  /* ===== Components ===== */
4
5
  export * from "./components/Button";
5
6
  export * from "./components/Checkbox";
@@ -21,6 +21,7 @@ html {
21
21
  -apple-system,
22
22
  sans-serif;
23
23
  background: var(--color-background);
24
+ scrollbar-color: var(--color-on-surface-variant) transparent;
24
25
  }
25
26
 
26
27
 
@@ -17,7 +17,6 @@
17
17
  --font-weight-regular: 400;
18
18
  --font-weight-medium: 500;
19
19
  --font-weight-bold: 600;
20
- --font-weight-black: 700;
21
20
 
22
21
  /* ===== Radius ===== */
23
22
  --radius-xs: 4px;
@@ -117,10 +116,10 @@ html[data-theme="dark"] {
117
116
  --color-error-container: #93000a;
118
117
  --color-on-error-container: #ffdad6;
119
118
 
120
- --color-background: #2b3a38;
119
+ --color-background: #1E2927;
121
120
  --color-on-background: #dde4e3;
122
121
 
123
- --color-surface: #2b3a38bf;
122
+ --color-surface: #1E2927bf;
124
123
  --color-on-surface: #c3cbca;
125
124
  --color-on-surface-variant: #dde4e380;
126
125
  --color-surface-container: #262d2d;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucentia-ui",
3
- "version": "0.2.20",
3
+ "version": "0.2.22",
4
4
  "description": "React UI design token and component system based on neumorphism, featuring two color themes: light and dark.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",