- Replace the Python/Docker setup with a Rust workspace and Tauri frontend - Add core crates for archive, audio, MIDI, plugin, and desktop UI layers - Refresh the app scaffolding, build config, and documentation
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
canvas: "rgb(var(--color-canvas) / <alpha-value>)",
|
|
panel: "rgb(var(--color-panel) / <alpha-value>)",
|
|
panelAlt: "rgb(var(--color-panel-alt) / <alpha-value>)",
|
|
line: "rgb(var(--color-line) / <alpha-value>)",
|
|
accent: "rgb(var(--color-accent) / <alpha-value>)",
|
|
accentSoft: "rgb(var(--color-accent-soft) / <alpha-value>)",
|
|
text: "rgb(var(--color-text) / <alpha-value>)",
|
|
textMuted: "rgb(var(--color-text-muted) / <alpha-value>)",
|
|
danger: "rgb(var(--color-danger) / <alpha-value>)",
|
|
success: "rgb(var(--color-success) / <alpha-value>)"
|
|
},
|
|
boxShadow: {
|
|
glow: "0 18px 70px rgba(36, 196, 255, 0.12)",
|
|
panel: "0 16px 45px rgba(0, 0, 0, 0.28)"
|
|
},
|
|
backgroundImage: {
|
|
grain:
|
|
"radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%), radial-gradient(circle at bottom right, rgba(45,212,191,0.10), transparent 20%)"
|
|
},
|
|
fontFamily: {
|
|
sans: ["Outfit", "Inter", "ui-sans-serif", "system-ui"]
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|