# NoteToolSettings

***

## Properties

### color

> **color**: `string`

The color of the element in some CSS-like format.

#### Example

```typescript
"#ABC123";
"rgb(255, 0, 0)";
"hsl(200, 100%, 50%)";
```

#### Default

```ts
"#C93535"
```

***

### align

> **align**: `"center"` | `"left"` | `"right"`

The alignment of the text, either `left`, `center` or `right`.

#### Default

```ts
"center"
```

***

### style

> **style**: `"light"` | `"italic"` | `"regular"` | `"caps"`

The style of the text, either `italic`, `light`, `regular` or `caps`.

#### Default

```ts
"regular"
```

***

### showInspector

> **showInspector**: `boolean`

Whether to show the tool inspector.

#### Default Value

`false`
