@neo4j-cypher/react-codemirror 2.0.0-next.39 → 2.0.0-next.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/themes.ts CHANGED
@@ -97,11 +97,11 @@ export const darkThemeConstants: ThemeOptions = {
97
97
  };
98
98
 
99
99
  type ExtraThemeOptions = { inheritBgColor?: boolean };
100
- export const ayuLightTheme = ({ inheritBgColor }: ExtraThemeOptions) => {
100
+ const ayuLightTheme = ({ inheritBgColor }: ExtraThemeOptions) => {
101
101
  return createCypherTheme({ ...lightThemeConstants, inheritBgColor });
102
102
  };
103
103
 
104
- export const ayuDarkTheme = ({ inheritBgColor }: ExtraThemeOptions) => {
104
+ const ayuDarkTheme = ({ inheritBgColor }: ExtraThemeOptions) => {
105
105
  return createCypherTheme({ ...darkThemeConstants, inheritBgColor });
106
106
  };
107
107