Skip to content

Commit

Permalink
style(vx-axis): black => #222
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Williams committed Dec 29, 2019
1 parent 25ed467 commit a9f9de8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/vx-axis/src/axis/AxisBottom.tsx
Expand Up @@ -28,7 +28,7 @@ export default function AxisBottom<ScaleInput>({
tickFormat,
tickLabelProps = (/** tickValue, index */) => ({
dy: '0.25em',
fill: 'black',
fill: '#222',
fontFamily: 'Arial',
fontSize: 10,
textAnchor: 'middle',
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-axis/src/axis/AxisLeft.tsx
Expand Up @@ -29,7 +29,7 @@ export default function AxisLeft<ScaleInput>({
tickLabelProps = (/** tickValue, index */) => ({
dx: '-0.25em',
dy: '0.25em',
fill: 'black',
fill: '#222',
fontFamily: 'Arial',
fontSize: 10,
textAnchor: 'end',
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-axis/src/axis/AxisRight.tsx
Expand Up @@ -29,7 +29,7 @@ export default function AxisRight<ScaleInput>({
tickLabelProps = (/** tickValue, index */) => ({
dx: '0.25em',
dy: '0.25em',
fill: 'black',
fill: '#222',
fontFamily: 'Arial',
fontSize: 10,
textAnchor: 'start',
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-axis/src/axis/AxisTop.tsx
Expand Up @@ -28,7 +28,7 @@ export default function AxisTop<ScaleInput>({
tickFormat,
tickLabelProps = (/** tickValue, index */) => ({
dy: '-0.25em',
fill: 'black',
fill: '#222',
fontFamily: 'Arial',
fontSize: 10,
textAnchor: 'middle',
Expand Down

0 comments on commit a9f9de8

Please sign in to comment.