Skip to content

Commit c36cf72

Browse files
committed
feat: improves colors for containers
1 parent 129f80e commit c36cf72

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

assets/components/LogViewer/RandomColorTag.vue

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,26 @@
66
</template>
77
<script lang="ts">
88
const colors = [
9-
"#4B0082",
10-
"#FF00FF",
11-
"#FF7F00",
12-
"#FFFF00",
13-
"#00FF00",
14-
"#00FFFF",
15-
"#FF0000",
16-
"#0000FF",
17-
"#FF007F",
18-
"#32CD32",
19-
"#40E0D0",
20-
"#E6E6FA",
21-
"#800080",
22-
"#FFD700",
23-
"#FF4040",
9+
"hsl(200, 85%, 65%)", // Vibrant Sky Blue
10+
"hsl(150, 85%, 65%)", // Vibrant Mint
11+
"hsl(300, 85%, 65%)", // Vibrant Purple
12+
"hsl(25, 85%, 65%)", // Vibrant Peach
13+
"hsl(270, 85%, 65%)", // Vibrant Lavender
14+
"hsl(340, 85%, 65%)", // Vibrant Rose
15+
"hsl(170, 85%, 65%)", // Vibrant Aqua
16+
"hsl(50, 85%, 65%)", // Vibrant Yellow
17+
"hsl(235, 85%, 65%)", // Vibrant Periwinkle
18+
"hsl(10, 85%, 65%)", // Vibrant Coral
19+
"hsl(180, 85%, 65%)", // Vibrant Turquoise
20+
"hsl(320, 85%, 65%)", // Vibrant Orchid
21+
"hsl(90, 85%, 65%)", // Vibrant Lime
22+
"hsl(260, 85%, 65%)", // Vibrant Amethyst
23+
"hsl(30, 85%, 65%)", // Vibrant Orange
24+
"hsl(210, 85%, 65%)", // Vibrant Ocean
25+
"hsl(290, 85%, 65%)", // Vibrant Mauve
26+
"hsl(120, 85%, 65%)", // Vibrant Spring
27+
"hsl(350, 85%, 65%)", // Vibrant Strawberry
28+
"hsl(190, 85%, 65%)", // Vibrant Azure
2429
] as const;
2530
</script>
2631
<script lang="ts" setup>

0 commit comments

Comments
 (0)