From c618fcdcadc3dbf63800b41e96a96703be8c4d74 Mon Sep 17 00:00:00 2001 From: Ike Ku Date: Mon, 6 Aug 2018 20:45:58 +0300 Subject: [PATCH] Update examples in the README --- readme.md => README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) rename readme.md => README.md (60%) diff --git a/readme.md b/README.md similarity index 60% rename from readme.md rename to README.md index df32e45..56d425b 100644 --- a/readme.md +++ b/README.md @@ -14,11 +14,17 @@ yarn add ayu ```JS import { dark, light, mirage } from 'ayu' -dark.common.bg === '#0f1419' -light.ui.fg === '#828c99' -mirage.syntax.error === '#ff3333' +dark.common.bg.hex === '#0f1419' +light.common.fg.hex === '#828c99' +mirage.syntax.error.hex === '#ff3333' + +dark.common.bg.rgb === '15, 20, 25' +light.common.fg.rgb === '97, 103, 108' +mirage.syntax.error.rgb === '255, 51, 51' ``` +_This package includes TypeScript definitions._ + ### Colors