Redesigned fuchsia-themed loyalty stamp card with procedural SVG flower-petal stamps (unique shape per slot via sine-wave perturbation), star cutout mask, hover animations, and gradient background. Admin accounts now see simplified account page with History, Referral, Danger Zone tabs and loyalty stamp card hidden. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
29 lines
836 B
JavaScript
29 lines
836 B
JavaScript
// tailwind.config.js (or .ts)
|
|
import { fontFamily } from 'tailwindcss/defaultTheme';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}'
|
|
// Add other relevant paths if necessary
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', ...fontFamily.sans]
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
// Add any existing plugins required by shadcn-svelte
|
|
],
|
|
safelist: [
|
|
// Safelist fuchsia colors you intend to use
|
|
{ pattern: /bg-(fuchsia)-(50|100|200|300|400|500|600|700|800|900)/ },
|
|
{ pattern: /text-(fuchsia)-(50|100|200|300|400|500|600|700|800|900)/ },
|
|
{ pattern: /border-(fuchsia)-(50|100|200|300|400|500|600|700|800|900)/ },
|
|
{ pattern: /ring-(fuchsia)-(50|100|200|300|400|500|600|700|800|900)/ }
|
|
// Add other fuchsia utilities if needed (e.g., ring, placeholder)
|
|
]
|
|
};
|