mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Implement default colors
This commit is contained in:
parent
b9f86046b8
commit
a8ff676f7e
@ -155,7 +155,10 @@ export function UserTheme({ height }: { height: number }) {
|
|||||||
<ColorInput value={whiteColor} onChange={changeWhite} />
|
<ColorInput value={whiteColor} onChange={changeWhite} />
|
||||||
</Table.Td>
|
</Table.Td>
|
||||||
<Table.Td>
|
<Table.Td>
|
||||||
<ActionIcon variant="default" onClick={notYetImplemented}>
|
<ActionIcon
|
||||||
|
variant="default"
|
||||||
|
onClick={() => changeWhite('#FFFFFF')}
|
||||||
|
>
|
||||||
<IconRestore />
|
<IconRestore />
|
||||||
</ActionIcon>
|
</ActionIcon>
|
||||||
</Table.Td>
|
</Table.Td>
|
||||||
@ -168,7 +171,10 @@ export function UserTheme({ height }: { height: number }) {
|
|||||||
<ColorInput value={blackColor} onChange={changeBlack} />
|
<ColorInput value={blackColor} onChange={changeBlack} />
|
||||||
</Table.Td>
|
</Table.Td>
|
||||||
<Table.Td>
|
<Table.Td>
|
||||||
<ActionIcon variant="default" onClick={notYetImplemented}>
|
<ActionIcon
|
||||||
|
variant="default"
|
||||||
|
onClick={() => changeBlack('#000000')}
|
||||||
|
>
|
||||||
<IconRestore />
|
<IconRestore />
|
||||||
</ActionIcon>
|
</ActionIcon>
|
||||||
</Table.Td>
|
</Table.Td>
|
||||||
|
Loading…
Reference in New Issue
Block a user