forked from opensrc0/fe-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-theme.js
More file actions
58 lines (51 loc) · 895 Bytes
/
sample-theme.js
File metadata and controls
58 lines (51 loc) · 895 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const theme = {};
theme.color = {
primary: '#00364e',
secondary: '#03567b',
white: '#ffffff',
black: '#000000',
info: '#1976d2',
success: '#43a047',
warning: '#ffa000',
danger: '#d32f2f',
orange: '#fc6027',
};
theme.fontFamily = {};
theme.fontSize = {};
theme.fontWeight = {};
theme.display = {};
theme.component.Button = {
borderRadius: '4px',
primary: {
color: 'white',
borderColor: 'white',
},
secondary: {
color: 'white',
borderColor: 'white',
},
tertiary: {
color: 'white',
borderColor: 'white',
},
quaternary: {
color: 'white',
borderColor: 'white',
},
};
theme.component.TextBox = {
borderRadius: '4px',
primary: {
borderColor: 'white',
},
secondary: {
borderColor: 'white',
},
tertiary: {
borderColor: 'white',
},
quaternary: {
borderColor: 'white',
},
};
export default theme;