From a7756f6ee3c2a6c3c94bef2eeaadadcc82efeeee Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 24 Aug 2021 13:27:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=94=20Improve=20the=20`Bluelib`=20stor?= =?UTF-8?q?y?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Bluelib.stories.jsx | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/src/components/Bluelib.stories.jsx b/src/components/Bluelib.stories.jsx index e09e1d0..7cc719f 100644 --- a/src/components/Bluelib.stories.jsx +++ b/src/components/Bluelib.stories.jsx @@ -3,6 +3,11 @@ import * as ReactDOM from "react-dom" import * as Decorators from "../utils/Decorators" import {Bluelib} from "./Bluelib" import Color from "color" +import { LayoutThreeCol } from "./layouts/LayoutThreeCol" +import { Box } from "./panels/Box" +import { Heading } from "./common/Heading" +import { Idiomatic } from "./semantics/Idiomatic" +import { Mark } from "./semantics/Mark" export default { @@ -64,7 +69,21 @@ export default { export const Paper = props => ( -
Hello world!
+ + + + + Bluelib React + +

+ This is a mini-webpage-in-a-page using Bluelib React! +

+

+ Test out the various themes by switching to the various stories of this component, or create your own by tweaking the props displayed below. +

+
+
+
) Paper.args = { @@ -95,8 +114,8 @@ Sophon.args = { export const CustomRed = Paper.bind({}) CustomRed.args = { ...Paper.args, - foregroundColor: "#ff0000", + foregroundColor: "#660000", backgroundColor: "#ffcccc", - accentColor: "#000000", + accentColor: "#ff0000", polarity: -1, }