@karrotmarket/react-emotion-theme
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

@karrotmarket/react-emotion-theme

Usage

Installation

yarn add @emotion/react @karrotmarket/react-emotion-theme

Setup Provider

import { KarrotThemeProvider } from '@karrotmarket/react-emotion-theme';

// ...
<KarrotThemeProvider>
  <MyThemedComponent />
</KarrotThemeProvider>

Usage with @emotion/styled

const Box = styled.div(props => ({
  color: props.theme.colors.$carrot50,
  backgroundColor: props.theme.colors.$carrot500,
}));

Dark mode context

import { useDarkMode } from '@karrotmarket/react-emotion-theme';

function MyComponent() {
  const {
    value: isDarkMode,
    toggle: toggleDarkMode,
    enable: enableDarkMode,
    disable: disableDarkMode,
  } = useDarkMode();
}

Usage with custom theme

KarrotThemeProvider is just a ThemeProvider with predefined types and dark-mode behavior.

You can use ThemeProvider directly to opt-out the default behavior.

import { useDarkMode } from 'use-dark-mode';
import type { ColorScheme } from '@karrotmarket/design-token';
import { colors } from '@karrotmarket/design-token';
import { DarkModeContext } from '@karrotmarket/react-emotion-theme';
import { ThemeProvider } from '@emotion/react';

type CustomTheme = {
  colors: ColorScheme,
  myColors: MyColorScheme,
};

const theme: CustomTheme = {
  colors: colors.light.scheme,
  myColors: {/* ... */},
};

declare module '@emotion/react' {
  interface Theme extends CustomTheme {}
}

// ...

// You should provide dark mode context and control its behavior since you did opt-out the default
const darkMode = useDarkMode();

<DarkModeContext.Provider value={darkMode}>
  <ThemeProvider theme={theme}>
    <MyThemedComponent />
  </ThemeProvider>
</DarkModeContext.Provider>

Readme

Keywords

none

Package Sidebar

Install

npm i @karrotmarket/react-emotion-theme

Weekly Downloads

3

Version

1.1.1

License

none

Unpacked Size

15.4 kB

Total Files

11

Last publish

Collaborators

  • junghyeonsu
  • malangcat
  • kanziw
  • tonyfromundefined
  • cometkim