@qovira/theme 1.0.0 → 1.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/README.md +14 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,16 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Qovira's visual foundation as a distributable package: **Tailwind v4 tokens**,
|
|
4
4
|
**self-hosted fonts**, and a small **framework-agnostic theming runtime**. It is
|
|
5
|
-
the single source of color, type,
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
the single source of color, type, radius, elevation, and motion — plus spacing on
|
|
6
|
+
Tailwind's stock 4px grid — and the two themes, **Daylight** and **Evening**,
|
|
7
|
+
shared by every Qovira surface (the product web app and the
|
|
8
|
+
[qovira.ai](https://qovira.ai) marketing site), so the brand stays identical
|
|
9
|
+
across them without copy-paste.
|
|
9
10
|
|
|
10
11
|
The package is the _foundation_ a component library is built on — it ships only
|
|
11
12
|
tokens, fonts, and a tiny runtime, and has **no framework dependency**.
|
|
12
13
|
|
|
13
|
-
> Status:
|
|
14
|
-
>
|
|
14
|
+
> Status: stable (1.0). Tokens, fonts, runtime, and utilities are shipped; all
|
|
15
|
+
> four entry points resolve to real assets.
|
|
15
16
|
|
|
16
17
|
## Install
|
|
17
18
|
|
|
@@ -235,12 +236,18 @@ Use `rounded-full` only for true pills, toggles, and avatars.
|
|
|
235
236
|
|
|
236
237
|
```sh
|
|
237
238
|
pnpm install
|
|
238
|
-
pnpm build # tsup → dist/{runtime,boot}.js + copy CSS/fonts → dist/
|
|
239
|
+
pnpm build # tsup → dist/{runtime,boot}.js (+ .d.ts) + copy CSS/fonts → dist/
|
|
239
240
|
pnpm typecheck # tsc --noEmit
|
|
240
241
|
pnpm lint # eslint + prettier --check
|
|
241
242
|
pnpm test # vitest run
|
|
242
243
|
```
|
|
243
244
|
|
|
245
|
+
## Contributing
|
|
246
|
+
|
|
247
|
+
Contributions are welcome — read [CONTRIBUTING.md](./CONTRIBUTING.md) first, and
|
|
248
|
+
please follow the [Code of Conduct](./CODE_OF_CONDUCT.md). Open an issue before
|
|
249
|
+
sending a PR that adds or changes a token, color, or entry point.
|
|
250
|
+
|
|
244
251
|
## License
|
|
245
252
|
|
|
246
253
|
[Apache-2.0](./LICENSE) © OMNILIUM ADVANCED CYBERNETICS SRL
|