diff --git a/README.md b/README.md index 34631e3..a2c6dd0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ See [Base16Options](./src/Base16Options.ts) for the list of available options. tailwind.config.ts: ```tsx -import base16Tailwind from 'base16-tailwind' +import { base16Tailwind } from 'base16-tailwind' import type { Config } from 'tailwindcss/types/config' const tailwindConfig: Partial = { diff --git a/tests/helpers/runPluginWithConfig.ts b/tests/helpers/runPluginWithConfig.ts index 5599844..7187213 100644 --- a/tests/helpers/runPluginWithConfig.ts +++ b/tests/helpers/runPluginWithConfig.ts @@ -28,7 +28,7 @@ import typographyPlugin from '@tailwindcss/typography' import postcss from 'postcss' import tailwind, { type Config } from 'tailwindcss' import type { Base16Options } from '../../src/Base16Options.ts' -import base16Tailwind from '../../src/lib.ts' +import { base16Tailwind } from '../../src/lib.ts' type PostCSSResult = postcss.Result