-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistoire.config.ts
64 lines (63 loc) · 1.32 KB
/
histoire.config.ts
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
import { defineConfig } from 'histoire';
import { HstVue } from '@histoire/plugin-vue';
import { tailwindTokens } from 'histoire/dist/node/builtin-plugins/tailwind-tokens';
export default defineConfig({
plugins: [HstVue(), tailwindTokens({ configFile: '' })],
setupFile: '/src/histoire.setup.ts',
tree: {
groups: [
{
id: 'atoms',
title: 'Atoms',
},
{
id: 'molecules',
title: 'Molecules',
},
{
id: 'organisms',
title: 'Organisms',
},
{
id: 'templates',
title: 'Templates',
},
{
id: 'pages',
title: 'Pages',
},
],
},
theme: {
title: 'Calendar Application',
colors: {
gray: {
50: '#ffffff',
100: '#fdf7f2',
200: '#b4b1b6',
300: '#a19ea4',
400: '#8e8b92',
500: '#7b7780',
600: '#69646d',
700: '#56505b',
750: '#433d49',
800: '#3c3742',
850: '#36313a',
900: '#2f2b33',
950: '#28252c',
},
primary: {
50: '#ffdfb9',
100: '#ffd9ae',
200: '#ffd4a2',
300: '#ffce97',
400: '#FFC98B',
500: '#e6b57d',
600: '#cca16f',
700: '#b38d61',
800: '#997953',
900: '#806546',
},
},
},
});