@wick-charts/react 0.2.3 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -133,9 +133,11 @@ import { createTheme } from '@wick-charts/react';
133
133
 
134
134
  const myTheme = createTheme({
135
135
  background: '#1a1b2e',
136
- upColor: '#00d4aa',
137
- downColor: '#ff5577',
138
- textColor: '#8888aa',
136
+ candlestick: {
137
+ up: { body: '#00d4aa' },
138
+ down: { body: '#ff5577' },
139
+ },
140
+ axis: { textColor: '#8888aa' },
139
141
  });
140
142
  ```
141
143