-
Notifications
You must be signed in to change notification settings - Fork 33
/
styleguide.styles.js
executable file
·63 lines (61 loc) · 1.29 KB
/
styleguide.styles.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
/* eslint-disable import/unambiguous */
const config = require('vtex-tachyons/config.json')
module.exports = {
styles: {
TabButton: {
button: {
color: '#00BBD4',
width: '100%',
fontWeight: 'bold',
borderBottom: 'none !important',
textTransform: 'uppercase !important',
transition: 'none !important',
},
isActive: {
borderBottom: 0,
},
},
Logo: {
logo: {
color: `${config.colors['rebel-pink']} !important`,
fontWeight: '900 !important',
fontSize: '36px !important',
},
},
headingSpacer: {
marginBottom: '5rem',
},
StyleGuide: {
logo: {
border: 0,
},
sidebar: {
border: 0,
'& li > a': {
color: `${config.colors['near-black']} !important`,
},
'& li > a:hover': {
color: `${config.colors['gray']} !important`,
cursor: 'pointer',
},
},
},
},
theme: {
color: {
link: '#00BBD4',
linkHover: '#0090a3',
sidebarBackground: config.colors['near-white'],
},
fontFamily: {
base: 'Fabriga, sans-serif',
},
fontSize: {
base: 14,
text: 16,
small: 12,
},
maxWidth: 900,
sidebarWidth: 270,
},
}