Skip to content

Commit

Permalink
docs(theming): fix object syntax (uber#2697)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillich authored and sandgraham committed Jan 24, 2020
1 parent d35221a commit d934f89
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions documentation-site/pages/guides/theming.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,15 @@ import {createTheme, lightThemePrimitives} from 'baseui';

const primitives = {
...lightThemePrimitives,
accent: "#F127E4"; // hot pink
accent50: "#FDEDFC";
accent100: "#FCD3F9";
accent200: "#F89FF3";
accent300: "#F45AEA";
accent400: "#F127E4";
accent500: "#B71DAD";
accent600: "#901788";
accent700: "#600F5B";
accent: "#F127E4", // hot pink
accent50: "#FDEDFC",
accent100: "#FCD3F9",
accent200: "#F89FF3",
accent300: "#F45AEA",
accent400: "#F127E4",
accent500: "#B71DAD",
accent600: "#901788",
accent700: "#600F5B"
};

const theme = createTheme(primitives);
Expand All @@ -200,15 +200,15 @@ import {createTheme, lightThemePrimitives} from 'baseui';

const primitives = {
...lightThemePrimitives,
accent: "#F127E4"; // hot pink
accent50: "#FDEDFC";
accent100: "#FCD3F9";
accent200: "#F89FF3";
accent300: "#F45AEA";
accent400: "#F127E4";
accent500: "#B71DAD";
accent600: "#901788";
accent700: "#600F5B";
accent: "#F127E4", // hot pink
accent50: "#FDEDFC",
accent100: "#FCD3F9",
accent200: "#F89FF3",
accent300: "#F45AEA",
accent400: "#F127E4",
accent500: "#B71DAD",
accent600: "#901788",
accent700: "#600F5B"
};

const overrides = {
Expand Down

0 comments on commit d934f89

Please sign in to comment.