<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "variables";

@color-primary: #0088cc;

@color-secondary: #504bfd;

@color-tertiary: #eff1f3;

@color-quaternary: #383f48;

@import "skin";

// Carousel
.custom-carousel-backward-shape {
	.owl-stage-outer {
		&amp;:before {
			background-color: lighten(@color-primary, 30%);
		}
	}
}

// SVG
.custom-svg-linear-gradient {
	stop {
		&amp;:nth-child(1) {
			stop-color: @color-secondary !important;
		}
		&amp;:nth-child(2) {
			stop-color: @color-primary !important;
		}
	}
}

// SVG Path Fill Color
html {
	.for(@colors-list); .-each(@value) {
		@name:  extract(@value, 1);
		@color:  extract(@value, 2);

		path.custom-svg-fill-color-@{name},
		circle.custom-svg-fill-color-@{name} {
			fill: @color !important;
		}
	}
}</pre></body></html>