-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.style.js
63 lines (62 loc) · 1.1 KB
/
styleguide.style.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
module.exports.styles = {
SectionHeading: {
wrapper: {
margin: '2em 0',
},
sectionName: {
'&:hover, &:active': {
textDecoration: 'none',
borderBottom: '2px solid #ff6044',
},
},
},
Type: {
type: {
width: '145px',
display: 'inline-block',
fontSize: '11px',
fontWeight: 'bold',
},
},
ComponentsList: {
item: {
'& a': {
cursor: 'pointer',
color: '#525252 !important',
},
'& a:hover, & a:active': {
color: '#ff6044 !important',
},
},
},
}
module.exports.theme = {
sidebarWidth: 284,
fontSize: {
base: 15,
h1: 33,
h2: 27,
h3: 20,
h4: 18,
h5: 16,
h6: 16,
small: 13,
text: 15,
},
color: {
base: '#333',
baseBackground: '#fff',
border: '#e8e8e8',
codeBackground: '#f5f5f5',
error: '#c00',
light: '#767676',
lightest: '#ccc',
link: '#f6412d',
linkHover: '#ff735d',
ribbonBackground: '#f6412d',
ribbonText: '#fff',
sidebarBackground: '#f5f5f5',
name: '#f92672',
type: '#929292',
},
}