Files
goldenChart/frontend/src/utils/tradeSignalColors.ts
T
2026-05-31 01:23:47 +09:00

6 lines
267 B
TypeScript

/** 프로젝트 공통 — 매매 시그널 색 (매수: 빨강, 매도: 파랑) */
export const TRADE_BUY_COLOR = '#ef5350';
export const TRADE_SELL_COLOR = '#4dabf7';
export const TRADE_BUY_COLOR_HOVER = '#e53935';
export const TRADE_SELL_COLOR_HOVER = '#339af0';