diff --git a/projects/editor/src/app/UnitFactory.ts b/projects/editor/src/app/UnitFactory.ts
index caaf6f162496b2e2cbd2a673a257b10b1fd7fd29..e679262ab43665293c806601729564609ad31eab 100644
--- a/projects/editor/src/app/UnitFactory.ts
+++ b/projects/editor/src/app/UnitFactory.ts
@@ -60,10 +60,10 @@ function createUnitUIElement(type: string): UnitUIElement {
 
 export function createTextUIElement(): Record<string, unknown> {
   return {
-    fontColor: 'blue',
+    fontColor: 'black',
     font: 'Arial',
     fontSize: 18,
-    bold: true,
+    bold: false,
     italic: false,
     underline: false
   };
@@ -82,7 +82,7 @@ export function createInputUIElement(
 
 export function createSurfaceUIElement(): Record<string, unknown> {
   return {
-    backgroundColor: 'lightgrey'
+    backgroundColor: 'transparent'
   };
 }