File "_custom-properties.scss"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/elementor/app/assets/styles/base/_custom-properties.scss
File size: 525 bytes
MIME-type: text/plain
Charset: utf-8

// Base: Custom properties
// - Generated via loops from relevant maps.

// Custom variable values only support SassScript inside `#{}`.

:root {
	@each $color, $value in $eps-theme-colors {
		@if map-get($eps-theme-colors, $color) {
			--#{$color}: #{$value};
		}
	}

	@each $color, $value in $eps-theme-elements-colors {
		@if map-get($eps-theme-elements-colors, $color) {
			--#{$color}: #{$value};
		}
	}

	@each $color, $value in $eps-tints {
		@if map-get($eps-tints, $color) {
			--gray-#{$color}: #{$value};
		}
	}
}