Initial commit: Gold Trading Simulator with AI-powered analysis

This commit is contained in:
Krikorios
2025-11-16 00:50:04 +02:00
commit 72c1d3adb7
128 changed files with 16232 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
border: '#2a3142',
dark: {
bg: '#0a0e1a',
surface: '#1a1f2e',
border: '#2a3142',
hover: '#242938',
},
gold: {
500: '#FFD700',
600: '#FFC700',
},
green: {
500: '#10b981',
600: '#059669',
},
red: {
500: '#ef4444',
600: '#dc2626',
},
},
},
},
plugins: [],
}