-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.js
78 lines (78 loc) · 1.62 KB
/
themes.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
73
74
75
76
77
78
export default {
light: {
name: 'light',
messages: {
backgroundColor: 'white',
color: '#000000'
},
bar: {
backgroundColor: 'white',
color: '#000000',
borderBottom: '1px solid rgba(0,0,0,0.3)'
},
windowBar: {
backgroundColor: '#dfdfdf'
},
messageWrap: {
borderBottom: '1px solid #e6ecf0'
},
colors: {
dimmed: '#647787',
icon: '#72bfff',
text: '#565656'
},
button: {
background: 'rgba(255, 255, 255, 0.8)',
backgroundHover: 'rgba(255, 255, 255, 0.9)',
color: '#565656'
},
composeInput: {
backgroundColor: 'rgb(245, 248, 250)',
color: '#000000'
},
composeWindow: {
backgroundColor: '#ffffff'
},
composeBar: {
backgroundColor: '#ffffff',
borderBottom: '1px solid rgba(0,0,0,0.3)'
}
},
dark: {
name: 'dark',
messages: {
backgroundColor: '#1a2837'
},
bar: {
backgroundColor: '#233448',
borderBottom: '1px solid rgba(0,0,0,0)'
},
messageWrap: {
borderBottom: '1px solid rgba(0,0,0,0.5)'
},
windowBar: {
backgroundColor: '#16202d'
},
colors: {
dimmed: '#8799a7',
icon: '#72bfff',
text: 'white'
},
button: {
background: 'rgba(255, 255, 255, 0.2)',
backgroundHover: 'rgba(255, 255, 255, 0.3)',
color: '#fff'
},
composeInput: {
backgroundColor: '#192530',
color: 'white'
},
composeWindow: {
backgroundColor: '#1a2836'
},
composeBar: {
backgroundColor: '#243547',
borderBottom: '1px solid rgba(0,0,0,0)'
}
}
};