Files
winterfail/js/core/constants.js

16 lines
447 B
JavaScript

export const INTERVALS = ['1m', '3m', '5m', '15m', '30m', '37m', '148m', '1h', '2h', '4h', '8h', '12h', '1d', '3d', '1w', '1M'];
export const COLORS = {
tvBg: '#0d1421',
tvPanelBg: '#1a2333',
tvBorder: '#2d3a4f',
tvText: '#ffffff',
tvTextSecondary: '#8fa2b3',
tvGreen: '#26d367',
tvRed: '#ff4d4d',
tvBlue: '#2962ff',
tvHover: '#252f3f'
};
export const API_BASE = window.APP_CONFIG?.API_BASE_URL || '/api/v1';