Skip to content

Commit

Permalink
update default down candle body color
Browse files Browse the repository at this point in the history
  • Loading branch information
benwolski committed Jan 6, 2025
1 parent 3c66890 commit 3813f17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contexts/ChartContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export const ChartContextProvider = (props: { children: React.ReactNode }) => {
const [defaultChartSettings] = useState<LocalChartSettingsIF>({
chartColors: {
upCandleBodyColor: '--chart-positive',
downCandleBodyColor: '--dark2',
downCandleBodyColor: '--chart-negative',
selectedDateFillColor: '--accent2',
upCandleBorderColor: '--chart-positive',
downCandleBorderColor: '--chart-negative',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/platformAmbient/Chart/Candle/CandleChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function CandleChart(props: candlePropsIF) {
const selectedCandleColor = '#E480FF';
const crocCandleLightColor = '#26A69A';
const crocCandleBorderLightColor = '#26A69A';
const crocCandleDarkColor = '#24243e';
const crocCandleDarkColor = '#EF5350';
const crocCandleBorderDarkColor = '#EF5350';

const bandwidth = useMemo(() => {
Expand Down

0 comments on commit 3813f17

Please sign in to comment.