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 { ...@@ -101,6 +101,12 @@ export interface AIResearch {
trader_report: AITraderReport; trader_report: AITraderReport;
} }
export interface EvidenceSource {
name: string;
source_type: 'dse_api' | 'agent_state' | 'calculation' | 'ai_analysis';
detail: string;
}
export interface StockAnalysis { export interface StockAnalysis {
schema_version: '1.0'; schema_version: '1.0';
analysis_id: string; analysis_id: string;
...@@ -121,6 +127,7 @@ export interface StockAnalysis { ...@@ -121,6 +127,7 @@ export interface StockAnalysis {
report_sections: ReportSection[]; report_sections: ReportSection[];
agent_reports: AgentReports; agent_reports: AgentReports;
ai_research?: AIResearch | null; ai_research?: AIResearch | null;
sources: EvidenceSource[];
disclaimer: BilingualText; disclaimer: BilingualText;
} }
......
...@@ -6,15 +6,15 @@ ...@@ -6,15 +6,15 @@
html { html {
scroll-behavior: smooth; scroll-behavior: smooth;
background-color: #05070c; background-color: #f3f0e8;
} }
html, html,
body { body {
min-height: 100%; min-height: 100%;
margin: 0; margin: 0;
background: #090d16; background: #f3f0e8;
color: #f3f4f6; color: #17201c;
overflow-x: hidden; overflow-x: hidden;
} }
...@@ -31,7 +31,7 @@ textarea { ...@@ -31,7 +31,7 @@ textarea {
button, button,
select, select,
summary { summary {
outline-color: #0ea5e9; outline-color: #0b7458;
} }
/* Custom Scrollbar */ /* Custom Scrollbar */
...@@ -41,14 +41,14 @@ summary { ...@@ -41,14 +41,14 @@ summary {
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background: #0b0f19; background: #f3f0e8;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: #1f2937; background: #d7d7cb;
border-radius: 4px; border-radius: 4px;
} }
::-webkit-scrollbar-thumb:hover { ::-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