-
Notifications
You must be signed in to change notification settings - Fork 1
/
Theme.story.tsx
71 lines (61 loc) · 1.23 KB
/
Theme.story.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import {
BorderBlocks,
ColorBlocks,
ComponentBlocks,
ThemeProvider,
PaletteBlocks,
ShadowBlocks,
SpacingBlocks,
TypographyBlocks,
extractTheme,
useTheme
} from 'reablocks';
import TWConfig from './config';
import tailwindConfig from '../../../../tailwind.config';
export default {
title: 'General/Theme',
component: ThemeProvider,
decorators: [
Story => (
<div style={{ width: '95vw' }}>
<Story />
</div>
)
]
};
const {
colors,
palettes,
borderRadius,
boxShadow,
spacing,
fontFamily,
fontSize,
fontWeight
} = extractTheme(TWConfig, tailwindConfig);
export const Colors = () => (
<ColorBlocks colors={colors} />
);
export const Palettes = () => (
<PaletteBlocks palettes={palettes} />
);
export const Typography = () => (
<TypographyBlocks
families={fontFamily}
sizes={fontSize}
weights={fontWeight}
/>
);
export const Spacings = () => (
<SpacingBlocks spacings={spacing} />
);
export const Borders = () => (
<BorderBlocks borders={borderRadius} />
);
export const Shadows = () => (
<ShadowBlocks shadows={boxShadow} />
);
export const Components = () => {
const { theme } = useTheme();
return <ComponentBlocks components={theme.components} />;
};