// Copyright (c) 2014, 2023, Oracle and/or its affiliates.  Licensed under The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/


@if variable-exists(includeCssVarDefinitions) and $includeCssVarDefinitions != false  {
  @include module-include-once("common.css.variables") {

    :root {

      @each $key, $value in $oj-css-var-map {
        #{$key}: $value;
      }
    }


  }
}

:root {

  @each $key, $value in $oj-css-option-defaults-map {
    #{$key}: $value;
  }
}

