# ultimate-store-kit/3.1.4/tailwind.config.js

Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder, version 3.1.4. 88 lines.

- Page: https://pluginprobe.com/plugins/ultimate-store-kit/3.1.4/code/tailwind.config.js
- Raw: https://pluginprobe.com/plugins/ultimate-store-kit/3.1.4/raw/tailwind.config.js
- Modified: 2026-09-17T12:29:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-store-kit/3.1.4/code/tailwind.config.js#L10-L20`.

```javascript
/** @type {import('tailwindcss').Config} */
module.exports = {
	content: [
		'./src/admin/**/*.{js,jsx}',
		'../ultimate-store-kit-pro/src/admin/**/*.{js,jsx}',
	],

	// Scope utilities under the WP admin mount node (see Dashboard.php). `important` as a
	// selector emits `.ultimate-store-kit-admin-root .w-full { … }` (descendant), NOT chained.
	// So width/height/flex utilities on the SAME element as `ultimate-store-kit-admin-root`
	// never match — put Tailwind classes only on descendants, or use a wrapper with
	// `display: contents` around portaled UI (see OfferEditor).
	important: '.ultimate-store-kit-admin-root',

	corePlugins: {
		preflight: false,
	},

	theme: {
		extend: {
			fontFamily: {
				sans: [
					'-apple-system',
					'BlinkMacSystemFont',
					'"Segoe UI"',
					'Roboto',
					'Oxygen',
					'Ubuntu',
					'sans-serif',
				],
			},
			colors: {
				uks: {
					brand: '#00216A',
					'brand-dark': '#00216A',
					dark: '#1a2332',
					/** ~darken($dark, 3%) for sidebar promo */
					'dark-deep': '#161e2a',
					surface: '#f1f5f9',
					border: '#e2e8f0',
					muted: '#64748b',
				},
			},
			borderRadius: {
				usk: '10px',
			},
			boxShadow: {
				usk: '0 2px 8px rgba(0, 0, 0, 0.06)',
			},
			keyframes: {
				uskSlideIn: {
					from: { opacity: '0', transform: 'translateY(-8px)' },
					to: { opacity: '1', transform: 'translateY(0)' },
				},
				/** Offer editor drawer (slides in from right) */
				offerDrawerSlide: {
					from: { transform: 'translateX(100%)' },
					to: { transform: 'translateX(0)' },
				},
			},
			animation: {
				'usk-slide-in': 'uskSlideIn 0.3s ease',
				'offer-drawer': 'offerDrawerSlide 200ms ease-out',
			},
		},
	},

	plugins: [],

	// Pro admin JSX (../ultimate-store-kit-pro/...) is in `content`, but arbitrary utilities
	// are easy to miss after edits if the free admin CSS isn’t rebuilt — keep critical layout classes emitted.
	safelist: [
		'w-[400px]',
		'min-w-[400px]',
		'max-w-[400px]',
		'w-[min(1200px,100vw)]',
		'max-w-[min(1200px,100vw)]',
		'z-[159000]',
		'sm:grid-cols-2',
		'sm:grid-cols-3',
		'lg:grid-cols-2',
		'lg:grid-cols-3',
		'xl:grid-cols-2',
		'xl:grid-cols-4',
		'2xl:grid-cols-4',
	],
};

```
