Initial release

This commit is contained in:
civ
2026-08-16 18:24:52 +07:00
commit 876886a39a
13244 changed files with 2353959 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
/* Suno theme colors — matching hot-step-9000 */
suno: {
DEFAULT: '#09090b',
sidebar: '#000000',
panel: '#121214',
card: '#18181b',
hover: '#27272a',
border: '#27272a',
},
/* Semantic colors */
brand: {
DEFAULT: '#ec4899',
hover: '#db2777',
light: '#f472b6',
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
animation: {
'gradient-x': 'gradient-x 15s ease infinite',
},
keyframes: {
'gradient-x': {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
},
},
},
plugins: [],
};