From 0d9f80a82076039f2b435bfc7d190ece50bc1155 Mon Sep 17 00:00:00 2001 From: Cameron Date: Tue, 23 Apr 2024 17:15:01 -0400 Subject: [PATCH] more fun color stuff --- content/_layouts/partials/doc-category.liquid | 7 +++++-- content/_scss/flixel-colors.scss | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/content/_layouts/partials/doc-category.liquid b/content/_layouts/partials/doc-category.liquid index 1f9237520..9b6732c1c 100644 --- a/content/_layouts/partials/doc-category.liquid +++ b/content/_layouts/partials/doc-category.liquid @@ -11,8 +11,11 @@ {%- endfor -%} {% for doc in collections[docCollection] %} -
-
+ {% capture flixelcol %} + {% cycle "--bs-flixel-yellow", "--bs-flixel-red", "--bs-flixel-green", "--bs-flixel-dark-blue", "--bs-flixel-light-blue" %} + {% endcapture %} +
+
{{ doc.data.title }} diff --git a/content/_scss/flixel-colors.scss b/content/_scss/flixel-colors.scss index 13efcb70c..5f1c74e03 100644 --- a/content/_scss/flixel-colors.scss +++ b/content/_scss/flixel-colors.scss @@ -12,4 +12,7 @@ $flixel-colors: ( flixel-light-blue: $flixel-light-blue, ); +$link-color: $flixel-dark-blue; +$link-color-dark: $flixel-light-blue; + $theme-colors: map-merge($theme-colors, $flixel-colors);