Skip to content

Commit

Permalink
fix(coordinates): updating default fill to #37474F
Browse files Browse the repository at this point in the history
A bit nicer colour rather than a standard gray.

Closes react-financial#30
  • Loading branch information
markmcdowell committed Sep 11, 2019
1 parent 509fab1 commit 7b8362a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/charts/src/coordinates/CrossHairCursor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const defaultCustomX = (props: CrossHairCursorProps, moreProps) => {
export class CrossHairCursor extends React.Component<CrossHairCursorProps> {

public static defaultProps = {
stroke: "#4a4a4a",
stroke: "#37474F",
opacity: 0.8,
strokeDasharray: "Dash",
snapX: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/charts/src/coordinates/MouseCoordinateX.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class MouseCoordinateX extends React.Component<MouseCoordinateXProps> {
strokeWidth: 1,
orient: "bottom",
at: "bottom",
fill: "#4a4a4a",
fill: "#37474F",
opacity: 1,
fontFamily: "-apple-system, system-ui, Roboto, 'Helvetica Neue', Ubuntu, sans-serif",
fontSize: 13,
Expand Down
2 changes: 1 addition & 1 deletion packages/charts/src/coordinates/MouseCoordinateY.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class MouseCoordinateY extends React.Component<MouseCoordinateYProps> {
at: "right",
dx: 0,
arrowWidth: 10,
fill: "#4a4a4a",
fill: "#37474F",
opacity: 1,
fontFamily: "-apple-system, system-ui, Roboto, 'Helvetica Neue', Ubuntu, sans-serif",
fontSize: 13,
Expand Down

0 comments on commit 7b8362a

Please sign in to comment.