more lines

This commit is contained in:
2024-12-05 20:10:31 -08:00
parent e6a52f971b
commit a353585d47
9 changed files with 269 additions and 82 deletions

View File

@@ -1,4 +1,5 @@
@use '@/assets/variables';
@use 'sass:list';
body {
color: variables.$text-color;
@@ -18,3 +19,9 @@ body {
polyline {
stroke-width: 1px;
}
@for $i from 1 through list.length(variables.$colors) {
.indexed-color.color-#{$i - 1} {
#{--indexed-color}: list.nth(variables.$colors, $i);
}
}