Skip to content

Commit

Permalink
Fix error and success colors (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcginnes committed Sep 13, 2024
1 parent 0ee23c4 commit 6f0ebf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ const palette: DeepRequired<ProcessedTheme["palette"]> = {
contrastText: "#ffffff",
},
error: {
main: "#eb4e4c",
light: "#ff9077",
main: "#eb4e4c",
dark: "#a41c1b",
contrastText: "#ffffff",
},
success: {
main: "#27af8c",
light: "#31deb2",
main: "#27af8c",
dark: "#129271",
contrastText: "#ffffff",
},
Expand Down
8 changes: 4 additions & 4 deletions packages/graph-explorer/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
--color-info-main: 18 142 229;
--color-info-dark: 23 69 123;

--color-error-light: 235 78 76;
--color-error-main: 255 144 119;
--color-error-light: 255 144 119;
--color-error-main: 235 78 76;
--color-error-dark: 164 28 27;

--color-success-light: 39 175 140;
--color-success-main: 49 222 178;
--color-success-light: 49 222 178;
--color-success-main: 39 175 140;
--color-success-dark: 18 146 113;

--color-warning-light: 255 184 46;
Expand Down

0 comments on commit 6f0ebf9

Please sign in to comment.