From 43a9d83cbdb48e70c84fac489b228b7bb09b1975 Mon Sep 17 00:00:00 2001 From: sharpshark28 Date: Sun, 13 Nov 2016 20:26:22 -0600 Subject: [PATCH] Expanded on config examples in readme --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 453c563..113e1ba 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,13 @@ blabbercomic(messages).then(response => { const blabbercomic = require('blabber-comic'); let backgrounds = ['./assets/backgrounds/1.png', './assets/backgrounds/2.png']; let characters = ['./assets/characters/1.png', './assets/characters/2.png', './assets/characters/3.png']; // Provide at least 3 -let comicSize = 400; // in px square +let comicSize = 500; // in px square +let borderColor ='#CCCCCC'; +let font = 'Impact'; +let textColor: '#000000'; let messages = [] // Array of messages... -let config = { backgrounds, characters, comicSize }; +let config = { backgrounds, characters, comicSize, borderColor, font, textColor }; blabbercomic(messages, config); ```