Skip to content
Snippets Groups Projects
Commit 40716c61 authored by rhenck's avatar rhenck
Browse files

[editor] Improve default values

parent dbd3d3e5
No related branches found
No related tags found
No related merge requests found
......@@ -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'
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment