|
@@ -190,7 +190,7 @@ If you need to select only one color, you can use the radio input type:
|
|
|
Add an color picker to your form to let users customise it according to their preferences.
|
|
|
|
|
|
```html
|
|
|
-<input type="color" class="form-control form-control-color" value="#066fd1" title="Choose your color">
|
|
|
+<input type="color" class="form-control form-control-color" value="#2563EB" title="Choose your color">
|
|
|
```
|
|
|
|
|
|
There is also an example of a color picker input:
|
|
@@ -198,7 +198,7 @@ There is also an example of a color picker input:
|
|
|
```html example centered
|
|
|
<div class="mb-3">
|
|
|
<label class="form-label">Color picker</label>
|
|
|
- <input type="color" class="form-control form-control-color" value="#066fd1" title="Choose your color">
|
|
|
+ <input type="color" class="form-control form-control-color" value="#2563EB" title="Choose your color">
|
|
|
</div>
|
|
|
```
|
|
|
|