From 7036cbee14b55d87e8c15a43b38c356edea015f9 Mon Sep 17 00:00:00 2001 From: Mauro Reis Vieira Date: Thu, 14 Nov 2019 17:45:56 +0000 Subject: [PATCH] fix: module export. --- README.md | 23 +++++++++++++++++++++++ src/build.js | 19 ------------------- src/{settings => }/index.js | 0 3 files changed, 23 insertions(+), 19 deletions(-) delete mode 100644 src/build.js rename src/{settings => }/index.js (100%) diff --git a/README.md b/README.md index 8b7c965..52138f1 100644 --- a/README.md +++ b/README.md @@ -1 +1,24 @@ # Meetio Theme Colors + +### Schemes Palettes + +| Usage | Light | Dark | +| --------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | +| `Cursor` | ![#7e57c2](https://placehold.it/30x24/7e57c2/000000?text=%20) `#7e57c2` | ![#ffcc00](https://placehold.it/30x24/ffcc00/000000?text=%20) `#ffcc00` | +| `Foreground` | ![#455A64](https://placehold.it/30x24/455A64/000000?text=%20) `#455A64` | ![#dedfe4](https://placehold.it/30x24/dedfe4/000000?text=%20) `#dedfe4` | +| `Background` | ![#fbfbfb](https://placehold.it/30x24/fbfbfb/000000?text=%20) `#fbfbfb` | ![#011627](https://placehold.it/30x24/011627/000000?text=%20) `#011627` | +| `Comments` | ![#90a4ae](https://placehold.it/30x24/90a4ae/000000?text=%20) `#90a4ae` | ![#697098](https://placehold.it/30x24/697098/000000?text=%20) `#697098` | +| `Blue` | ![#6182b8](https://placehold.it/30x24/6182b8/000000?text=%20) `#6182b8` | ![#82aaff](https://placehold.it/30x24/82aaff/000000?text=%20) `#82aaff` | +| `Brown` | ![#bc5454](https://placehold.it/30x24/bc5454/000000?text=%20) `#bc5454` | ![#c17e70](https://placehold.it/30x24/c17e70/000000?text=%20) `#c17e70` | +| `Cyan` | ![#5fb3b3](https://placehold.it/30x24/5fb3b3/000000?text=%20) `#5fb3b3` | ![#81c5da](https://placehold.it/30x24/81c5da/000000?text=%20) `#81c5da` | +| `Green` | ![#91b859](https://placehold.it/30x24/91b859/000000?text=%20) `#91b859` | ![#c3e88d](https://placehold.it/30x24/c3e88d/000000?text=%20) `#c3e88d` | +| `Orange` | ![#f76d47](https://placehold.it/30x24/f76d47/000000?text=%20) `#f76d47` | ![#f78c6c](https://placehold.it/30x24/f78c6c/000000?text=%20) `#f78c6c` | +| `Pink` | ![#ff5370](https://placehold.it/30x24/ff5370/000000?text=%20) `#ff5370` | ![#f07178](https://placehold.it/30x24/f07178/000000?text=%20) `#f07178` | +| `Purple` | ![#7c4dff](https://placehold.it/30x24/7c4dff/000000?text=%20) `#7c4dff` | ![#c2afff](https://placehold.it/30x24/c2afff/000000?text=%20) `#c2afff` | +| `Red` | ![#e53935](https://placehold.it/30x24/e53935/000000?text=%20) `#e53935` | ![#d95757](https://placehold.it/30x24/d95757/000000?text=%20) `#d95757` | +| `Yellow` | ![#f3ad2c](https://placehold.it/30x24/f3ad2c/000000?text=%20) `#f3ad2c` | ![#ffcb6b](https://placehold.it/30x24/ffcb6b/000000?text=%20) `#ffcb6b` | +| `Invalid` | ![#d3423e66](https://placehold.it/30x24/d3423e66/000000?text=%20) `#d3423e66` | ![#d46c6c66](https://placehold.it/30x24/d46c6c66/000000?text=%20) `#d46c6c66` | +| `Diff Added` | ![#9ccc65](https://placehold.it/30x24/9ccc65/000000?text=%20) `#9ccc65` | ![#9ccc65](https://placehold.it/30x24/9ccc65/000000?text=%20) `#9ccc65` | +| `Diff Modified` | ![#e2b93d](https://placehold.it/30x24/e2b93d/000000?text=%20) `#e2b93d` | ![#e2b93d](https://placehold.it/30x24/e2b93d/000000?text=%20) `#e2b93d` | +| `Diff Deleted` | ![#ef5350](https://placehold.it/30x24/ef5350/000000?text=%20) `#ef5350` | ![#ef5350](https://placehold.it/30x24/ef5350/000000?text=%20) `#ef5350` | + diff --git a/src/build.js b/src/build.js deleted file mode 100644 index ab0e145..0000000 --- a/src/build.js +++ /dev/null @@ -1,19 +0,0 @@ -/*eslint-disable no-undef */ -const path = require("path") -const fs = require("fs") -const rimraf = require("rimraf") - -const {light, dark} = require("./settings/") - -rimraf("colors", () => { - fs.mkdir("colors", () => { - fs.writeFileSync(`${}.js`, - buffer, - err => { - if (err) { - console.log(err) - } - } - ) - }) -}) diff --git a/src/settings/index.js b/src/index.js similarity index 100% rename from src/settings/index.js rename to src/index.js