We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5905db4 + 1c045cc commit b30c641Copy full SHA for b30c641
src/reducers/componentReducer.js
@@ -78,7 +78,7 @@ const appComponent = {
78
selectableParents: [],
79
expanded: true,
80
props: [],
81
- nextPropId: 0,
+ nextPropId: 1,
82
position: {
83
x: 110,
84
y: 120,
src/utils/colors.util.js
@@ -1,5 +1,6 @@
1
const colors = [
2
'#F44336',
3
+ '#3B2F89',
4
'#E91E63',
5
'#9C27B0',
6
'#2196F3',
@@ -11,10 +12,20 @@ const colors = [
11
12
'#4CAF50',
13
'#76FF03',
14
'#C6FF00',
15
+ '#89892F',
16
+ '#DCAAA0',
17
+ '#FFC0CB',
18
'#FF9800',
19
'#FF6D00',
20
'#F50057',
21
'#D500F9',
22
+ '#FFFF00',
23
+ '#D8BFD8',
24
+ '#008B8B',
25
+ '#7FFFD4',
26
+ '#87CEEB',
27
+ '#DAA520',
28
+ '#C0C0C0',
29
];
30
31
const getColor = () => colors[Math.floor(Math.random() * colors.length)];
0 commit comments