-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy paththeme-quartz.ts
65 lines (55 loc) · 1.02 KB
/
theme-quartz.ts
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
import {Config} from './config';
const markColor = '#ab5787';
const axisColor = '#979797';
const quartzTheme: Config = {
background: '#f9f9f9',
arc: {fill: markColor},
area: {fill: markColor},
line: {stroke: markColor},
path: {stroke: markColor},
rect: {fill: markColor},
shape: {stroke: markColor},
symbol: {fill: markColor, size: 30},
axis: {
domainColor: axisColor,
domainWidth: 0.5,
gridWidth: 0.2,
labelColor: axisColor,
tickColor: axisColor,
tickWidth: 0.2,
titleColor: axisColor,
},
axisBand: {
grid: false,
},
axisX: {
grid: true,
tickSize: 10,
},
axisY: {
domain: false,
grid: true,
tickSize: 0,
},
legend: {
labelFontSize: 11,
padding: 1,
symbolSize: 30,
symbolType: 'square',
},
range: {
category: [
'#ab5787',
'#51b2e5',
'#703c5c',
'#168dd9',
'#d190b6',
'#00609f',
'#d365ba',
'#154866',
'#666666',
'#c4c4c4',
],
},
};
export default quartzTheme;