We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aee663 commit 88b4e15Copy full SHA for 88b4e15
examples/3d-cubes/src/components/Face.tsx
@@ -26,7 +26,7 @@ export const Face = ({ color, style, ...transform3dProps }: FaceProps) => {
26
const { diffuseColor, emissiveColor } = useMemo(() => {
27
return {
28
diffuseColor: blendHex(color, '#ffffff', 0.1),
29
- emissiveColor: blendHex(color, '#000000', 0.333),
+ emissiveColor: blendHex(color, '#000000', 0.5),
30
};
31
}, [color]);
32
0 commit comments