# Mein Schiff® Tailwind CSS Configuration

The **Mein Schiff® Tailwind CSS Configuration** package provides a tailored configuration for Tailwind CSS, optimized for the Mein Schiff® design system.

## Installation

To install the package, run the following command:

```bash
npm install @tui-cruises/mein-schiff-web-tailwind-config
```

## Usage

To use this package, import the shared configuration into your own Tailwind configuration:

```ts
import { sharedConfig } from '@tui-cruises/mein-schiff-web-tailwind-config';

const config = {
  ...sharedConfig,
  theme: {
    ...sharedConfig.theme,
    fontFamily: {
      sans: ['var(--font-mein-schiff-sans-pro)'],
    },
  },
};

export default config;
```

This will bring in the shared configurations (content, theme, plugins) and allow you to extend them as needed.

## License

This project is licensed under the **Business Source License (BSL)**. For commercial use, a commercial license is required.