diff options
Diffstat (limited to '')
| -rw-r--r-- | documentation/USAGE.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/USAGE.md b/documentation/USAGE.md index 380ce4e..c3f97ae 100644 --- a/documentation/USAGE.md +++ b/documentation/USAGE.md @@ -2,8 +2,8 @@ I love Deno. URL imports are cool. Anyhoo, you can do the same with uchū: -- `https://uchu.style/color.css` -- `https://uchu.style/color_expanded.css` +- `https://uchu.style/uchu-reduced.css` +- `https://uchu.style/uchu.css` @@ -17,7 +17,7 @@ If you're coding a website by hand, you probably want to use the reduced palette <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> - <link href="https://uchu.style/color.css" rel="stylesheet"/> + <link href="https://uchu.style/uchu-reduced.css" rel="stylesheet"/> <style> body { @@ -47,7 +47,7 @@ If you're coding a web app, you probably want to use the expanded palette. Or no </script> <style lang="scss"> - @import url("https://uchu.style/color_expanded.css"); + @import url("https://uchu.style/uchu.css"); section { background-color: var(--uchu-yang); |