Commit 2b18c83e authored by MD. SHAHIDUL ISLAM's avatar MD. SHAHIDUL ISLAM

feat: redesign analysis UI with a modern terminal-inspired light theme and updated dashboard layout

parent 8c2c0d86
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -101,6 +101,12 @@ export interface AIResearch {
trader_report: AITraderReport;
}
export interface EvidenceSource {
name: string;
source_type: 'dse_api' | 'agent_state' | 'calculation' | 'ai_analysis';
detail: string;
}
export interface StockAnalysis {
schema_version: '1.0';
analysis_id: string;
......@@ -121,6 +127,7 @@ export interface StockAnalysis {
report_sections: ReportSection[];
agent_reports: AgentReports;
ai_research?: AIResearch | null;
sources: EvidenceSource[];
disclaimer: BilingualText;
}
......
......@@ -6,15 +6,15 @@
html {
scroll-behavior: smooth;
background-color: #05070c;
background-color: #f3f0e8;
}
html,
body {
min-height: 100%;
margin: 0;
background: #090d16;
color: #f3f4f6;
background: #f3f0e8;
color: #17201c;
overflow-x: hidden;
}
......@@ -31,7 +31,7 @@ textarea {
button,
select,
summary {
outline-color: #0ea5e9;
outline-color: #0b7458;
}
/* Custom Scrollbar */
......@@ -41,14 +41,14 @@ summary {
}
::-webkit-scrollbar-track {
background: #0b0f19;
background: #f3f0e8;
}
::-webkit-scrollbar-thumb {
background: #1f2937;
background: #d7d7cb;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #374151;
background: #b8b8aa;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment