-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyleguide.config.js
More file actions
37 lines (36 loc) · 859 Bytes
/
styleguide.config.js
File metadata and controls
37 lines (36 loc) · 859 Bytes
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
const path = require('path');
module.exports = {
require: [
'babel-polyfill',
path.join(__dirname, './styles.css')
],
components: 'src/index.js',
exampleMode: 'expand',
usageMode: 'expand',
title: 'IntersectionVisible',
styleguideDir: path.join(__dirname, '/'),
ribbon: {
// Link to open on the ribbon click (required)
url: 'https://github.com/AvraamMavridis/react-intersection-visible',
// Text to show on the ribbon (optional)
text: 'Fork me on GitHub'
},
showSidebar: false,
theme: {
color: {
base: '#001514',
light: '#001514',
lightest: '#001514',
name: '#001514',
type: '#001514',
error: '#001514',
ribbonBackground: '#001514',
link: '#001514',
linkHover: '#001514',
border: '#001514'
}
},
editorConfig: {
theme: 'dracula',
}
};