-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
76 lines (75 loc) · 1.5 KB
/
styleguide.config.js
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
72
73
74
75
76
import path from 'path';
import webpackProd from './config/webpack.prod';
module.exports = {
title: 'Radicalbit | Design System',
assetsDir: path.join(__dirname, '/src/lib/resources'),
require: [
path.join(__dirname, 'src/styles/index.less'),
],
styleguideDir: 'docs',
pagePerSection: true,
sections: [
{
name: 'Home',
content: 'src/styleguidist/home/Readme.md',
},
{
name: 'Brand',
content: 'src/styleguidist/brand/Readme.md',
},
{
name: 'Principles',
content: 'src/styleguidist/principles/Readme.md',
},
{
name: 'Components library',
components: 'src/lib/components/*/index.js',
},
],
theme: {
color: {
base: '#9b9b9b',
link: '#e7e7e7',
linkHover: '#59b4e8',
sidebarBackground: '#4a4a4a',
baseBackground: '#fff',
},
fontSize: {
base: 15,
text: 15,
small: 13,
h1: 36,
h2: 30,
h3: 26,
h4: 15,
h5: 14,
h6: 12,
},
fontFamily: {
base: ['Lato'],
monospace: ['Lato'],
},
sidebarWidth: 300,
spaceFactor: 6,
},
styles: {
Styleguide: {
sidebar: {
color: '#FFFFFF',
},
},
Logo: {
border: 'none',
logo: {
'text-indent': -999,
background: 'url("/images/rbit-logo.png") no-repeat',
'background-position': 0,
'margin-left': 15,
height: 70,
width: 200,
padding: 0,
},
},
},
webpackConfig: webpackProd,
};