recharts
Version:
React charts
21 lines (20 loc) • 501 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.legacyTheme = void 0;
/**
* This is the theme as was the default in 2.x and 3.x branches.
*
* It's not very consistent, colors are all over the place and overall exists only for backwards compatibility.
* Prefer to use either {@link lightTheme} or {@link darkTheme} instead.
*
* @deprecated
* @experimental
*/
var legacyTheme = exports.legacyTheme = {
grid: {
stroke: '#ccc',
fill: 'none'
}
};