mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-12-05 12:04:45 +01:00
21 lines
437 B
JavaScript
21 lines
437 B
JavaScript
const getStyles = options =>
|
|
`.pieTitleText {
|
|
text-anchor: middle;
|
|
font-size: 25px;
|
|
fill: ${options.taskTextDarkColor};
|
|
font-family: ${options.fontFamily};
|
|
}
|
|
.slice {
|
|
font-family: ${options.fontFamily};
|
|
fill: ${options.textColor};
|
|
// fill: white;
|
|
}
|
|
.legend text {
|
|
fill: ${options.taskTextDarkColor};
|
|
font-family: ${options.fontFamily};
|
|
font-size: 17px;
|
|
}
|
|
`;
|
|
|
|
export default getStyles;
|