v1.0.2 part 1

This commit is contained in:
Olivier Gagnon
2021-11-19 15:44:12 -05:00
parent a4a931dad7
commit b80d12b9f8
10 changed files with 179 additions and 14 deletions
+21
View File
@@ -132,6 +132,27 @@ export function ThemeEditorModal(props: IProps): React.ReactElement {
defaultColor={defaultSettings.theme["primarydark"]}
/>
<br />
<ColorEditor
name="successlight"
onColorChange={onColorChange}
color={customTheme["successlight"]}
defaultColor={defaultSettings.theme["successlight"]}
/>
<ColorEditor
name="success"
onColorChange={onColorChange}
color={customTheme["success"]}
defaultColor={defaultSettings.theme["success"]}
/>
<ColorEditor
name="successdark"
onColorChange={onColorChange}
color={customTheme["successdark"]}
defaultColor={defaultSettings.theme["successdark"]}
/>
<br />
<ColorEditor
name="errorlight"