From 6949248439e475393df7b4a223d4b734235bde40 Mon Sep 17 00:00:00 2001 From: Adrian Petrov Date: Wed, 9 Sep 2026 20:13:25 +0300 Subject: [PATCH] feat(): add color-picker, qr-code and breadcrumb tailwind themes --- .../sass/tailwind/utilities/_common.scss | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/packages/theming/sass/tailwind/utilities/_common.scss b/packages/theming/sass/tailwind/utilities/_common.scss index fa584b44..369153bc 100644 --- a/packages/theming/sass/tailwind/utilities/_common.scss +++ b/packages/theming/sass/tailwind/utilities/_common.scss @@ -33,6 +33,14 @@ $theme-schemas: () !default; ) ); + // Breadcrumb + @include tailwind-theme( + $component: breadcrumb, + $props: ( + text-color, + ) + ); + // Button Group @include tailwind-theme( $component: button-group, @@ -89,6 +97,15 @@ $theme-schemas: () !default; ) ); + // Color Picker + @include tailwind-theme( + $component: color-picker, + $props: ( + anchor-background, + picker-background, + ) + ); + // Carousel @include tailwind-theme( $component: carousel, @@ -208,6 +225,14 @@ $theme-schemas: () !default; ) ); + // QR Code + @include tailwind-theme( + $component: qr-code, + $props: ( + background, + ) + ); + // Query Builder @include tailwind-theme( $component: query-builder,