diff options
Diffstat (limited to '')
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -9,8 +9,8 @@ No, [I will not add other color spaces](./documentation/FAQ.md#normal-colors). ## Install ```sh -bun add uchu -# or: npm install uchu / pnpm add uchu / yarn add uchu +bun add @inc/uchu +# or: npm install @inc/uchu / pnpm add @inc/uchu / yarn add @inc/uchu ``` @@ -20,7 +20,7 @@ bun add uchu ### JavaScript / TypeScript ```ts -import { color, palette, reduced, yang } from "uchu"; +import { color, palette, reduced, yang } from "@inc/uchu"; palette.blue[5]; // "oklch(54.87% 0.222 260.33)" color("red", 7); // "oklch(49.95% 0.195 18.34)" @@ -35,7 +35,7 @@ Types `Hue` and `Shade` are exported for narrowing palette keys. Drop the stylesheet in and use the CSS custom properties: ```ts -import "uchu/css"; +import "@inc/uchu/css"; ``` ```css @@ -49,7 +49,7 @@ body { ### Sass / SCSS ```scss -@use "uchu/scss" as *; +@use "@inc/uchu/scss" as *; body { background-color: $uchu-yang; |