@use "../../mixins/index.scss" as *;
@use "./variables.scss" as *;

@mixin kendo-prompt--theme-base() {

    .k-prompt {
        @include fill(
            $kendo-prompt-text,
            $kendo-prompt-bg,
            $kendo-prompt-border
        );
    }

    .k-prompt-header {
        @include fill(
            $kendo-prompt-header-text,
            $kendo-prompt-header-bg,
            $kendo-prompt-header-border
        );
    }

    .k-prompt-content {
        @include fill(
            $kendo-prompt-content-text,
            $kendo-prompt-content-bg,
            $kendo-prompt-content-border
        );
    }

    // Remove when k-suggestion is adopted
    .k-prompt-suggestion {
        @include fill(
            $kendo-prompt-suggestion-text,
            $kendo-prompt-suggestion-bg,
            $kendo-prompt-suggestion-border
        );
        @include box-shadow( $kendo-prompt-suggestion-shadow );
    }

    .k-prompt-footer {
        @include fill(
            $kendo-prompt-footer-text,
            $kendo-prompt-footer-bg,
            $kendo-prompt-footer-border
        );
    }

}
