forked from simoneldevig/json-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaz-ui.config.js
72 lines (72 loc) · 1.69 KB
/
maz-ui.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
module.exports = {
output: './src/assets/maz-ui/_maz-variables.scss',
theme: {
main: {
primary: '#ffd700',
secondary: '#12ABB0',
third: '#1d2d50',
danger: '#ED4F32',
success: '#3CB371',
info: '#17A2B8',
warning: '#FFA300',
light: '#EEEEEE',
dark: '#21222E',
grey: '#999999',
default: '#CCCCCC',
black: 'black',
white: 'white',
transparent: '#FFFFFF00',
disabled: '#F2F2F2'
},
typo: {
'base-font-size': '16px',
'base-font-family': 'Poppins, sans-serif',
'base-font-weight': '400',
'base-line-height': '1.5'
},
border: {
'border-width': '1px',
'border-radius': '6px'
},
light: {
typo: {
'text-color': '#212121',
'muted-color': 'rgba(0, 0, 0, .54)',
'placeholder-color': '#A7A7A7',
'icon-color': '#DEDEDE'
},
layout: {
'bg-color': 'white',
'bg-color-light': '#F2F2F2',
'overlay-color': 'rgba(86, 87, 117, .7)'
},
borderColor: {
'border-color': '#EEEEEE'
},
state: {
'hover-color': '#EEEEEE',
'disabled-color': '#F2F2F2'
}
},
dark: {
typo: {
'text-color': '#EEEEEE',
'muted-color': 'rgba(255, 255, 255, .54)',
'placeholder-color': 'rgba(255, 255, 255, .6)',
'icon-color': '#65678F'
},
layout: {
'bg-color': '#222831',
'bg-color-light': '#393e46',
'overlay-color': 'rgba(57, 62, 70, .7)'
},
borderColor: {
'border-color': '#3B3C53'
},
state: {
'hover-color': '#2E2F40',
'disabled-color': '#CCCCCC'
}
}
}
};