Skip to content

Commit

Permalink
revert text color to #74838f (metabase#10560)
Browse files Browse the repository at this point in the history
* revert text-medium color to #74838f

* use light instead of medium on preview button
  • Loading branch information
kdoh authored and mazameli committed Aug 13, 2019
1 parent 336e1d2 commit 8936884
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/metabase/css/core/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
--color-error: #ed6e6e;
--color-warning: #f9cf48;
--color-text-dark: #2e353b;
--color-text-medium: #a4adb3;
--color-text-medium: #74838f;
--color-text-light: #c7cfd4;
--color-text-white: #ffffff;
--color-bg-black: #2e353b;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/metabase/lib/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const colors = {
error: "#ED6E6E",
warning: "#F9CF48",
"text-dark": "#2E353B",
"text-medium": "#A4ADB3",
"text-medium": "#74838f",
"text-light": "#C7CFD4",
"text-white": "#FFFFFF",
"bg-black": "#2E353B",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export default class NotebookStep extends React.Component {
className={!showPreviewButton ? "hidden disabled" : null}
icon="play"
title={t`Preview`}
color={colors["text-medium"]}
color={colors["text-light"]}
onClick={() => this.setState({ showPreview: true })}
/>
</Box>
Expand Down

0 comments on commit 8936884

Please sign in to comment.