Skip to content

Commit a8d4dc5

Browse files
committed
add docs for new colour pallet
1 parent fe41b77 commit a8d4dc5

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

docs/concepts/colours.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,23 @@ The primary palette is applied across every page of the website and contains the
2929

3030
The secondary palette is applied to UI elements and it's not part of the base colors. The purpose of the secondary palette is to ensure the readability, usability, and accessibility of all UI elements and enhance the communication of actions, changes in state, or errors.
3131

32-
The secondary palette is yet to be defined.
32+
<div class="layout">
33+
<ColorPallet class="lg:col-2" @color="#0076D6" @name="Dark Blue" @variable="--color-blue-dark" />
34+
<ColorPallet class="lg:col-2" @color="#10AAFF" @name="Blue" @variable="--color-blue" />
35+
<ColorPallet class="lg:col-2" @color="#DFFDFF" @name="Light Blue" @variable="--color-blue-light" />
36+
</div>
3337

34-
### Examples
38+
<div class="layout">
39+
<ColorPallet class="lg:col-2" @color="#8BE998" @name="Green" @variable="--color-green" />
40+
<ColorPallet class="lg:col-2" @color="#C7F9DE" @name="Light Green" @variable="--color-green-light" />
41+
</div>
3542

36-
#### Applying a background color to the card component
43+
<div class="layout">
44+
<ColorPallet class="lg:col-2" @color="#FFEC64" @name="Yellow" @variable="--color-yellow" />
45+
<ColorPallet class="lg:col-2" @color="#FFFAD6" @name="Light Yellow" @variable="--color-yellow-light" />
46+
</div>
3747

38-
<div class="card bg-info">
39-
<div class="card-content">
40-
Do you have questions? Run into an issue or a bug? Get support from the community. A list of chat rooms, forums, and more are available here.
41-
</div>
48+
<div class="layout">
49+
<ColorPallet class="lg:col-2" @color="#7650F1" @name="Lilac" @variable="--color-lilac" />
50+
<ColorPallet class="lg:col-2" @color="#D5CBFF" @name="Light Lilac" @variable="--color-lilac-light" />
4251
</div>

0 commit comments

Comments
 (0)