UNPKG

@praetorian-chariot/ui

Version:

The UI component library for Chariot, built with Tailwind CSS and React.

23 lines (21 loc) 500 B
import { chariotColors } from "./theme.mjs"; /** @type {import('tailwindcss').Config} */ export default { darkMode: ['selector', '[data-theme="dark"]'], theme: { extend: { colors: chariotColors.colors, backgroundImage: { 'gradient': 'var(--chariot-background-gradient)', } } }, plugins: [], content: [ "./src/**/*.{js,jsx,ts,tsx}", "./.storybook/**/*.{ts,tsx,js,jsx}", "./src/index.css", "./theme.mjs", "./tailwind.config.js" ], };